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 / suji
THE PROGRAM DOES NOT RETURN ANY THING.. IT WILL SHOW THE ERROR
| Is This Answer Correct ? | 10 Yes | 2 No |
Post New Answer View All Answers
Do you know the purpose of 'register' keyword?
Why is sprintf unsafe?
Explain what does it mean when a pointer is used in an if statement?
How do you print an address?
What is the purpose of sprintf() function?
What is #define size in c?
Do you know null pointer?
Explain 'bit masking'?
Write a program to reverse a given number in c?
What is a pointer value and address in c?
What library is sizeof in c?
How reliable are floating-point comparisons?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
How can I write a function analogous to scanf?
write a program to rearrange the array such way that all even elements should come first and next come odd