what is the answer for it
main()
{
int i;
clrscr();
printf("%d",&i)+1;
scanf("%d",i)-1;
}
Answers were Sorted based on User's Feedback
Answer / deepshree sinha
any garbage value of i because the value of i is not
initialised.
| Is This Answer Correct ? | 1 Yes | 1 No |
what type of questions arrive in interview over c programming?
Is main() is used in the program,,see below example? void main() { int i; for(i=0;i<10;i++) main(); } Then what is the output of the program?
shorting algorithmS
What is the use of #include in c?
What is the main difference between calloc () and malloc ()?
how memory store byte
what is difference between overriding and overloading?
What is void main () in c?
Struct(s) { int a; long b; } Union (u) {int a; long b; } Print sizeof(s)and sizeof(u) if sizeof(int)=4 and sizeof(long)=4
How can a program be made to print the name of a source file where an error occurs?
wite a programme in c to linear search a data using flag and without using flags?
output for following code??? main() { int x=2,y,z; x*=3+2; printf("1.%d\n",x); x*=y=z=4; printf("2.%d %d %d\n",x,y,z); x=y==z; printf("3.%d\n",x); x==(y=z); printf("%d",x); }