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 |
Explain continue keyword in c
Write a code to reverse string seperated by spaces i/p str=India is my country o/p str=aidnI si ym yrtnuoc After writing code, optimize the code
What are header files? What are their uses?
When is a “switch” statement preferable over an “if” statement?
What are preprocessor directives in c?
How can I make it pause before closing the program output window?
difference between the array and linked list general difference related to memory
What is header file in c?
When should I declare a function?
21. #define square(x) x*x main() { int i; i = 64/square(4); printf("%d",i); }
what is meant by flushll() in c programming?
what is the difference between global variable & static variable declared out side all the function in the file.