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

output??

Answer Posted / rasel

11 15

Is This Answer Correct ?    0 Yes 16 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How can you tell whether a program was compiled using c versus c++?

770


List some basic data types in c?

716


how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?

1625


How to declare pointer variables?

840


What is define directive?

806






Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?

758


What is the advantage of an array over individual variables?

910


#include #include struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

5639


Why are algorithms important in c program?

779


What is echo in c programming?

701


What is header file definition?

772


How old is c programming language?

725


What extern c means?

697


In which header file is the null macro defined?

1044


Write a program to print numbers from 1 to 100 without using loop in c?

797