belongs to collection: C Programming language Basic programs with examples
C Program to Print “Hello World!”
Solution:
I have used Code:: Blocks compiler for debugging purpose. But you can use any C programming language compiler as per your availability.
#include <stdio.h> int main() { printf("Hello World!"); // printf() is use to display string return 0; }
Result:
Hello World!
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Solution:
I have used Code:: Blocks compiler for debugging purpose. But you can use any C programming language compiler as per your availability.
Result:
Hello World!
need an explanation for this answer? contact us directly to get an explanation for this answer