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


Please Help Members By Posting Answers For Below Questions

What is the general form of function in c?

700


What should malloc(0) do?

712


Is fortran still used today?

698


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

1552


.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; }

2140






what are the 10 different models of writing an addition program in C language?

1531


How can you allocate arrays or structures bigger than 64K?

781


Is int a keyword in c?

645


What is the difference between procedural and declarative language?

771


FILE PROGRAMMING

1868


How pointer is different from array?

684


number of times a digit is present in a number

1627


What is the difference between exit() and _exit() function?

683


How can I invoke another program or command and trap its output?

728


Why we use stdio h in c?

694