Answers for "how to print out hello world in c"

C#
0

print basic hello world in c

#include <stdio.h>
/*Using a one line comment */

/** This is a 
* multiline comment
*/

int main(){
	/* print the words 'Hello world!'
    * n : stands for new line character
    */
    
    printf("Hello world!n");
    return 0;
}
Posted by: Guest on August-01-2021

C# Answers by Framework

Browse Popular Code Answers by Language