What will be the output of the following program
#include<stdio.h>
void main()
{
int i=20;
i-=i+++++i++;
printf("%d",i);
}
Answer Posted / j mahesh
i=20
i++ + ++i =20 + 21=41
i-=41
i=i-41 =20-41
i= -21
| Is This Answer Correct ? | 4 Yes | 4 No |
Post New Answer View All Answers
What is the difference between union and anonymous union?
What is a const pointer?
What is the difference between Printf(..) and sprint(...) ?
Is multithreading possible in c?
How can you determine the maximum value that a numeric variable can hold?
What tq means in chat?
Explain what are multibyte characters?
What is function pointer c?
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
what do you mean by inline function in C?
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this
Why do we use header files in c?
What are high level languages like C and FORTRAN also known as?
Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function