The C language terminator is
a.semicolon
b.colon
c.period
d.exclamation mark
Answers were Sorted based on User's Feedback
Answer / fazlur rahaman naik & praneeth
a is the answer.i.e semicolon.
| Is This Answer Correct ? | 20 Yes | 0 No |
Answer / manju
a.semicolon
every statement in a ptogram which is written in c
language can be end with a semicolon. othewise it'l show a
error
| Is This Answer Correct ? | 10 Yes | 1 No |
Answer / vivek kumar
Terminator in the 'C' language is
semicolon
| Is This Answer Correct ? | 5 Yes | 2 No |
How can I sort more data than will fit in memory?
Can you please explain the difference between strcpy() and memcpy() function?
Between macros and functions,which is better to use and why?
what are far pointers?
What is the scope of global variable in c?
WHAT IS LOW LEVEL LANGUAGE?
2)#include<iostream.h> main() { printf("Hello World"); } the program prints Hello World without changing main() the o/p should be intialisation Hello World Desruct the changes should be a)iostream operator<<(iostream os, char*s) os<<'intialisation'<<(Hello World)<<Destruct b) c) d)none of the above
write a own function for strstr
What is getche() function?
what is array?
How many loops are there in c?
void main() { int i=5; printf("%d",i+++++i); }