main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
Answer Posted / vandana
55 93
| Is This Answer Correct ? | 1 Yes | 12 No |
Post New Answer View All Answers
Difference between pass by reference and pass by value?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
How are portions of a program disabled in demo versions?
write a program to concatenation the string using switch case?
What is a keyword?
What are the string functions? List some string functions available in c.
Why is c not oop?
Explain can the sizeof operator be used to tell the size of an array passed to a function?
What is c system32 taskhostw exe?
Write a simple code fragment that will check if a number is positive or negative.
What is external variable in c?
Is c call by value?
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
What do you mean by dynamic memory allocation in c? What functions are used?
differentiate built-in functions and user – defined functions.