Single and Multiple Line Comments
Comments
/* Your comment will be here */
C language में comments define करने के लिए forward slash (/) और asterisk (*) का प्रयोग किया जाता है।
#include <stdio.h>
int main() /* Main function starts from here*/
{
printf(“Hello World!”); /* This statement will print Hello World message */
return 0;
}
ऊपर दिए गए program में comments के माध्यम से program और दूसरे statements के बारे में explanation दी गयी है।
Hello World!
Comments
Post a Comment