[h=2]C hello world example[/h]
#include <stdio.h> int main() { printf("Hello world\n"); return 0; }
[h=2]Hello world program in c[/h] 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); return 0; }
#include <stdio.h> int main() { printf("Hello world\n"); return 0; }
[h=2]Hello world program in c[/h] 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); return 0; }