source listing

what is source listing for a program ?

It's the source code. The part of the program humans can read and write.
Do you mean the print out of the code source of the program?
I don't know what you mean but he means the actual code you write
i.e
1
2
3
4
5
int main()
{
  cout << "Hello World!\n";
  return 0;
}

Last edited on
Topic archived. No new replies allowed.