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 |
How do you generate random numbers in C?
get any number as input except 1 and the output will be 1.without using operators,expressions,array,structure.don't print 1 in printf statement
What is the use of ?
How can I implement opaque (abstract) data types in C? What's the difference between these two declarations? struct x1 { ... }; typedef struct { ... } x2;
What is the use of bitwise operator?
What is the difference between static and global variables?
Which is not valid in C? 1) class aClass{public:int x;} 2) /* A comment */ 3) char x=12;
What is the difference between test design and test case design?
What are different storage class specifiers in c?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
How to find the usage of memory in a c program
Explain what is #line used for?