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


Please Help Members By Posting Answers For Below Questions

#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }

620


What is || operator and how does it function in a program?

620


Is the exit() function same as the return statement? Explain.

654


Explain that why C is procedural?

648


What is #include called?

561






using for loop sum 2 number of any 4 digit number in c language

1725


Disadvantages of C language.

649


What are the types of data types and explain?

662


What is difference between static and global variable in c?

529


What's the right way to use errno?

611


Is there any data type in c with variable size?

626


explain how do you use macro?

660


What are the types of assignment statements?

622


What is declaration and definition in c?

518


Where are some collections of useful code fragments and examples?

704