Output:#include<stdio.h> //stdio stands for "Standard Input/Output" int main() //The main function { printf("Learn Code With Me"); //Printf format string (of which "printf" stands for "print formatted" return 0; //In standard c, every function must have a return type. }
Learn Code With Me
Post a Comment