Printing Hello World
Using C printing Hello World:
#include<stdio.h>
int main()
{
printf("Hello World\n");
return 0;
}
~“Truth can only be found in one place: the code.” ― Robert C. Martin, Clean Code: A Handbook of Agile Software
Comments
Post a Comment