The C language terminator is
a.semicolon
b.colon
c.period
d.exclamation mark
Answer Posted / genifer
its semicolon.. and not explanation mark..
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
Are there namespaces in c?
Array is an lvalue or not?
What are static variables in c?
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
What is a pointer on a pointer in c programming language?
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
Is null a keyword in c?
In c programming language, how many parameters can be passed to a function ?
Can we change the value of #define in c?
What is meant by errors and debugging?
Explain how can I convert a string to a number?
Is multithreading possible in c?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer