main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
what is the output?
Post New Answer View All Answers
Is array name a pointer?
How can I prevent another program from modifying part of a file that I am modifying?
write a c program to find the sum of five entered numbers using an array named number
What is scanf () in c?
"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks
How can I read/write structures from/to data files?
What does the characters “r” and “w” mean when writing programs that will make use of files?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
Is c object oriented?
What is the difference between text and binary modes?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
Why is c called a mid-level programming language?
What are the disadvantages of external storage class?
What is substring in c?
What is the usage of the pointer in c?