#include<stdio.h>
void main()
{
int =1;
printf("%d%d%d",a++,++a,++a);
}

Answer Posted / sravani

i got the answer 1,3,4

Is This Answer Correct ?    5 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is dangling pointer in c?

618


What is variable and explain rules to declare variable in c?

549


How can you find the exact size of a data type in c?

598


What is the purpose of macro in C language?

659


List out few of the applications that make use of Multilinked Structures?

1288






What is meant by recursion?

630


write a c program in such a way that if we enter the today date the output should be next day's date.

1677


void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply

2220


What is a null string in c?

583


What is maximum size of array in c?

582


Which header file is essential for using strcmp function?

932


the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function

754


how logic is used

1494


What is typedef example?

616


What are dangling pointers in c?

635