Multi Line Comments In C

[Solved] Multi Line Comments In C | Perl - Code Explorer | yomemimo.com
Question : multi line comment c

Answered by : real-ratel-ll169mvsrjmx

/* this is how you comment multiple lines in c */

Source : | Last Update : Tue, 08 Dec 20

Question : single line and multiline comments in c

Answered by : harit-rai

plz subscribe to my you tube channel -->
https://www.youtube.com/channel/UC-sfqidn2fKZslHWnm5qe-A
// this is a comment in c# .using two frontslash you can define a comment in c# language
/*this is a multiline comment in c#
we define multiline xomment by adding fron slash and a star and wen we end the
multiline comment then again we write fron slashand a star but this time star
is
at the front */ 

Source : | Last Update : Wed, 13 Apr 22

Question : Multi-line Comments in C

Answered by : samer-saeid

/* This program takes age input from the user
It stores it in the age variable
And, print the value using printf() */
#include <stdio.h>
int main() { int age; printf("Enter the age: "); scanf("%d", &age); printf("Age = %d", age); return 0;
}

Source : | Last Update : Sun, 19 Jun 22

Question : Single-line Comments in C

Answered by : samer-saeid

#include <stdio.h>
int main() { // create integer variable int age = 25; // print the age variable printf("Age: %d", age); return 0;
}

Source : | Last Update : Sun, 19 Jun 22

Answers related to multi line comments in c

Code Explorer Popular Question For Perl