Comments in C Language | Video Tutorial (HINDI)
Source code for this Tutorial
#include <stdio.h> #include <stdlib.h> int main() { // this is a single line comment int age; /* printf("Video tutorial on comments"); */ printf("LearningLad Rocks"); /* this is a multi line comment second line */ return 0; }