main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
output??
Answer Posted / rukmanee
output : x=10;
y=16;
| Is This Answer Correct ? | 20 Yes | 7 No |
Post New Answer View All Answers
Explain how can I convert a string to a number?
Explain the properties of union. What is the size of a union variable
write a program to find out prime number using sieve case?
What is c definition?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
swap 2 numbers without using third variable?
Write a program to reverse a linked list in c.
What is difference between stdio h and conio h?
Place the #include statement must be written in the program?
Discuss the function of conditional operator, size of operator and comma operator with examples.
What is the general form of a C program?
How can I open files mentioned on the command line, and parse option flags?
What are keywords c?
Explain how do you list a file’s date and time?
Is c a great language, or what?