C or C++ something else....

V

Victor Bazarov

Julián Albo said:
[..] Then it's just a quantitative
difference, not qualitative ;-)

Actually, according to dialectics any quantitative difference
*is* qualitative.

V
 
F

Frederick Gotham

=?ISO-8859-15?Q?Juli=E1n?= Albo posted:
#include <stdio.h>
int main ()
{
puts ("Hello");
}


Gratuitously off-topic, but that's bad C code. You should be explicit that
the argument list is empty by specifying "void", and you should have a return
statement in main.

#include <stdio.h>

int main(void)
{
puts("Hello");
return 0;
}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,582
Members
45,061
Latest member
KetonaraKeto

Latest Threads

Top