what is the value of b
if a=5;
b=++a + ++a
Answer Posted / guru1985
b=++a(6) + ++a(7)
b=6+7
=13
| Is This Answer Correct ? | 83 Yes | 57 No |
Post New Answer View All Answers
Why are algorithms important in c program?
Write a program to implement queue.
How do I get a null pointer in my programs?
In c programming language, how many parameters can be passed to a function ?
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
What is a #include preprocessor?
What is function what are the types of function?
What do you mean by a local block?
Difference between goto, long jmp() and setjmp()?
Can true be a variable name in c?
What the advantages of using Unions?
Write a program to reverse a string.
Explain built-in function?
How do you use a pointer to a function?
what are the advantages of a macro over a function?