what is the value of b
if a=5;
b=++a + ++a
Answer Posted / harshfire92
b=14
| Is This Answer Correct ? | 55 Yes | 51 No |
Post New Answer View All Answers
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration
Why c is a mother language?
What is typeof in c?
Who developed c language and when?
What is the maximum no. of arguments that can be given in a command line in C.?
Here is a good puzzle: how do you write a program which produces its own source code as output?
Write the syntax and purpose of a switch statement in C.
Explain what is a const pointer?
How can I read and write comma-delimited text?
What is difference between scanf and gets?
What is extern variable in c with example?
Describe static function with its usage?
How does placing some code lines between the comment symbol help in debugging the code?
while initialization of array why we use a[][2] why not a[2][]...?
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.