Safcode Institute by Sir Safder





  • Comments and Escape Sequence

    Comment

    A comment In C language which is used to add comment anywhere in our computer program. Our Compiler are not executing comment. Comment always use with forward slash / There are two types of comment. 1. Single line comment //This is a single line comment Printf("Hello World"); 2. Multiple lines comment /* This is a Multiple Line Comment */ Printf("Hello World");

    Escape Sequence:

    We can use escape sequence in double inverted comma's Each escape sequence has its own predefined function. Example: \n - new line \\ - single slash \t - tab \" - double inverted commas \' - single inverted commas



  • You Can Also Watch Our Tutorial