void main()
{
int i=5;
printf("%d",i+++++i);
}

Answer Posted / mukul garg

i=5;
i++ + ++i;
5+7=12
ans:12

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is a dynamic array in c?

590


what is ur strangth & weekness

1816


What is assert and when would I use it?

578


What is calloc() function?

623


Is calloc better than malloc?

573






Compare array data type to pointer data type

599


Explain how can I convert a string to a number?

643


What is selection sort in c?

609


What is the use of clrscr?

593


What are global variables and explain how do you declare them?

574


Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?

3056


What is the scope of local variable in c?

577


What does sizeof return c?

598


Explain the difference between exit() and _exit() function?

632


What is dynamic memory allocation?

807