main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
what is the output?
Answer Posted / vignesh1988i
x=57
y=95
| Is This Answer Correct ? | 9 Yes | 14 No |
Post New Answer View All Answers
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
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
What is the difference between local variable and global variable in c?
How does pointer work in c?
Why we use int main and void main?
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
Can we add pointers together?
How can you determine the size of an allocated portion of memory?
What is typeof in c?
disply the following menu 1.Disply 2.Copy 3.Append; as per the menu do the file operations 4.Exit
How can variables be characterized?
Can we use visual studio for c?
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
How can I sort a linked list?
Differentiate fundamental data types and derived data types in C.