main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
output??
Answer Posted / chandrakala
hai Mannu how it will become 35, 39. the answer is only 11
and 16 ok...
thanks
chandra
| Is This Answer Correct ? | 9 Yes | 10 No |
Post New Answer View All Answers
What is a pointer value and address in c?
How do you search data in a data file using random access method?
write a C program: To search a file any word which starts with ?a?. If the word following this ?a? starts with a vowel.Then replace this ?a? with ?a? with ?an?. redirect with the output onto an output file.The source file and destination file are specified by the user int the command line.
What is this pointer in c plus plus?
largest Of three Number using without if condition?
Is there anything like an ifdef for typedefs?
What is a constant?
write a program to concatenation the string using switch case?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
Explain the Difference between the New and Malloc keyword.
Explain how can a program be made to print the line number where an error occurs?
How many levels deep can include files be nested?
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
What is chain pointer in c?
Why is %d used in c?