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
Is sizeof a keyword in c?
Tell me what is null pointer in c?
What is the heap in c?
What is a struct c#?
What are the types of operators in c?
What is a void pointer in c?
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); } }
How can you invoke another program from within a C program?
What is void pointers in c?
What does struct node * mean?
What are the advantages and disadvantages of a heap?
writ a program to compare using strcmp VIVA and viva with its output.
Why do we use main function?
how could explain about job profile
swap 2 numbers without using third variable?