Answers for "print basic 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

Code answers related to "C"

Browse Popular Code Answers by Language