main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
output??
Answer Posted / nirmala
11,15
Is This Answer Correct ? | 3 Yes | 19 No |
Post New Answer View All Answers
What is the general form of function in c?
What should malloc(0) do?
Is fortran still used today?
WHICH TYPE OF JOBS WE GET BY WRITING GROUPS .WHEN THE EXAMS CONDUCTED IS THIS EXAMS ARE CONDUCTED EVERY YEAR OR NOT.PLS TELL ME THE ANSWER
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
what are the 10 different models of writing an addition program in C language?
How can you allocate arrays or structures bigger than 64K?
Is int a keyword in c?
What is the difference between procedural and declarative language?
FILE PROGRAMMING
How pointer is different from array?
number of times a digit is present in a number
What is the difference between exit() and _exit() function?
How can I invoke another program or command and trap its output?
Why we use stdio h in c?