C hello world example
#include <stdio.h> int main() { printf("Hello world\n"); return 0; }
Hello world program in c We may store "hello world" in a character array and then print it.
#include <stdio.h> int main() { char string[] = "Hello World"; printf("%s\n", string)...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.