what is the value of b
if a=5;
b=++a + ++a
Answer Posted / anupam
13
| Is This Answer Correct ? | 25 Yes | 16 No |
Post New Answer View All Answers
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
How do you redirect a standard stream?
Explain what are binary trees?
Explain how can I right-justify a string?
How would you obtain the current time and difference between two times?
What is difference between far and near pointers?
Why is c called c?
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
What are unions in c?
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 is far pointer in c?
Why is event driven programming or procedural programming, better within specific scenario?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
What are keywords in c with examples?
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?