HomeC Print Hello World! with C byShibly -July 26, 2022 0 Print Hello, World! on the screen.Soution:#include <stdio.h> int main() { printf("Hello, World!\n"); return 0; }
Post a Comment