main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
Answer Posted / chandan dey
55
59
| Is This Answer Correct ? | 12 Yes | 31 No |
Post New Answer View All Answers
What are the similarities between c and c++?
Whats s or c mean?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
How many bytes are occupied by near, far and huge pointers (dos)?
A SIMPLE PROGRAM OF GRAPHICS AND THEIR OUTPUT I WANT SEE WAHAT OUTOUT OF GRAPHICS PROGRAM
What is modifier & how many types of modifiers available in c?
What is the difference between procedural and functional programming?
What does the error 'Null Pointer Assignment' mean and what causes this error?
How many types of errors are there in c language? Explain
Explain what are reserved words?
Which is best linux os?
Explain how many levels deep can include files be nested?
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
What language is windows 1.0 written?