Recent content by quen89

  1. Q

    C hello world example

    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)...
Back
Top