main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}

output??

Answer Posted / mahendra giri

11 16

Is This Answer Correct ?    133 Yes 33 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

 write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare.  You will then tabulate this information in another file.

1782


What’s a signal? Explain what do I use signals for?

679


What is the difference between c and python?

644


What is meant by recursion?

681


Explain how can I make sure that my program is the only one accessing a file?

699






How can I determine whether a machines byte order is big-endian or little-endian?

675


Is c is a procedural language?

669


What is the difference between array and structure in c?

628


find the sum of two matrices and WAP for it.

705


write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list

2319


#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }

794


Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol

734


Explain what will the preprocessor do for a program?

654


main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none

800


Differentiate between the = symbol and == symbol?

776