void main()
{
int x=25,y=32;
clrscr();
x=x++ + y++;
y=++x + ++y;
printf("%d%d",x,y);
}

Answer Posted / mounica

57 91

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain what will the preprocessor do for a program?

605


What is an auto variable in c?

758


Explain what is a 'locale'?

585


How can I check whether a file exists? I want to warn the user if a requested input file is missing.

656


#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }

772






write a program to print largest number of each row of a 2D array

1872


any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()

695


FILE PROGRAMMING

1779


What is the significance of scope resolution operator?

863


How can I ensure that integer arithmetic doesnt overflow?

608


differentiate built-in functions and user – defined functions.

628


What are Macros? What are its advantages and disadvantages?

649


write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.

3341


Why does everyone say not to use scanf? What should I use instead?

680


What is size of union in c?

580