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 / jeevitha
i-=i++ + ++i++
i-=41++
i-=42
i=20-42
i=-22
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
‘SAVEPOINT’ and ‘ROLLBACK’ is used in oracle database to secure the data comment. Give suitable examples of each with sql command.
Write a C program in Fibonacci series.
What is table lookup in c?
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
What is the use of ?
What does %d do?
write a program in c language to print your bio-data on the screen by using functions.
What is void c?
What are the 32 keywords in c?
What is the use of the function in c?
What does void main return?
What is the value of h?
What is null pointer constant?
Can we declare a function inside a function in c?
What is a MAC Address?