Search
 
SCRIPT & CODE EXAMPLE
 

C

single line and multiline comments in c

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 */ 
Comment

multi line comment c

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

Multi-line Comments in C

/* 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;
}
Comment

Single-line Comments in C

#include <stdio.h>

int main() {

  // create integer variable    
  int age = 25; 
 
  // print the age variable
  printf("Age: %d", age);

  return 0;
}
Comment

PREVIOUS NEXT
Code Example
C :: mettre int dans string c % 
C :: c language dictionary implemet 
C :: reverse string in c 
C :: sscanf and sprintf in c 
C :: send array to child process c 
C :: c check if character is a punctuation 
C :: escaping characters in hibernate queries 
C :: obby übersetzung 
C :: Futter Square Button full 
C :: how to make play a song javascript 
C :: what to do after gan training 
C :: comando para ejecutar hilos en c 
C :: Program optimization 
C :: memset c 
C :: c variable 
C :: concate string in c 
C :: open cv 
Dart :: listview.separated flutter 
Dart :: clickable container flutter 
Dart :: flutter border around textbutton 
Dart :: dismiss keyboard flutter 
Dart :: how to make list view non scrollable in flutter 
Dart :: Flutter - BoxShadow Widget 
Dart :: flutter android x 
Dart :: send null icon flutter 
Dart :: Add image with circular shape from corners in Flutter 
Dart :: flutter iconbutton 
Dart :: dart regex for url 
Dart :: dart qoldiqni olish 
Dart :: flutter chip 
ADD CONTENT
Topic
Content
Source link
Name
4+3 =