C LANGUAGE - 8: COMMENT OUT IN C

 IN THIS TUTORIAL, WE WILL LEARN ABOUT COMMENT OUT N C:

#include<stdio.h>
#include<stdlib.h>

int main()
{
    /* So, finally I got the key too comment out. */
    printf("Comments are fun");

    return 0;
}

Comments