what is the value of b
if a=5;
b=++a + ++a
Answer Posted / deepika katiyar
13
| Is This Answer Correct ? | 36 Yes | 24 No |
Post New Answer View All Answers
How to define structures? ·
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
Where in memory are my variables stored?
Add Two Numbers Without Using the Addition Operator
What is sizeof return in c?
Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?
What is the easiest sorting method to use?
Tell us two differences between new () and malloc ()?
Do pointers need to be initialized?
Write a Program to find whether the given number or string is palindrome.
What is the default value of local and global variables in c?
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
Is stack a keyword in c?
What is the purpose of type declarations?
Write a C/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 maximum number of concurrent threads that the InnoDB plug-in can create.