Comment Most important cs algorithm (Score 1) 596
Without a doubt (illustrated in C):
int main (char** argv)
{
printf("Hello World\n");
exit(0);
}
Appearantly it is the fundemental building block upon which all programming languages are based.
int main (char** argv)
{
printf("Hello World\n");
exit(0);
}
Appearantly it is the fundemental building block upon which all programming languages are based.