Mega Code Archive

 
Categories / C Tutorial / Language
 

The is used as single line comment

#include <stdio.h> main(){     int i,j,k;         i = 6;         j = 8;     k = i + j;         printf("sum of two numbers is %d \n",k); // end of line comment } sum of two numbers is 14