Answers for "commenting in c"

C
0

commenting in c

#include stdio.h
int main(){
  printf("Only this code will be printed.");
//This is a single line comment.
/*
this is a multiple line 
comment
*/
}
Posted by: Guest on April-19-2021

Code answers related to "C"

Browse Popular Code Answers by Language