main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
Post New Answer View All Answers
Tell me with an example the self-referential structure?
What are lookup tables in c?
Write a program to find factorial of a number using recursive function.
How to write a code for implementing my own printf() and
scanf().... Please hep me in this... I need a guidance...
Can you give an coding for c... Please also explain about
the header files used other than #include
What are the basic data types associated with c?
What are the 5 organizational structures?
Do you know the difference between malloc() and calloc() function?
Why is c so popular?
Which is the memory area not included in C program? give the reason
What does return 1 means in c?
What is unary operator?
Write a program to swap two numbers without using a temporary variable?
What is a file descriptor in c?
Is multithreading possible in c?
Is fortran still used today?