which one is highest Priority in c?
a)=,b)+,c)++,d)==
Answer Posted / satheesh.t
c) ++
| Is This Answer Correct ? | 8 Yes | 1 No |
Post New Answer View All Answers
What are pragmas and what are they good for?
What is file in c language?
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
What extern c means?
What is the use of getchar functions?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
what is the height of tree if leaf node is at level 3. please explain
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers
program to find out date after adding 31 days to a date in the month of febraury also consider the leap year
Is flag a keyword in c?
What are the benefits of c language?
how is the examination pattern?
Can a variable be both static and volatile in c?
What is double pointer?