main()
{
int i=400,j=300;
printf("%d..%d");
}
Answer Posted / muthu
It prints only garbage value, since the variables x and y
were not metioned out side the bracket
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
What is the use of function overloading in C?
Give me the code of in-order recursive and non-recursive.
What is an auto keyword in c?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
What is signed and unsigned?
What is typedef?
Why c is a mother language?
What is scope rule in c?
Is c object oriented?
How does #define work?
Explain pointer. What are function pointers in C?
Is malloc memset faster than calloc?
What is sizeof int?
how should functions be apportioned among source files?
How does placing some code lines between the comment symbol help in debugging the code?