int i =10
main()
{
int i =20,n;
for(n=0;n<=i;)
{
int i=10
i++;
}
printf("%d", i);
Answer Posted / vignesh1988i
it will not print i value at all , since the loop is always
true for all cases. since the termination condition is
depending upon n&i,always n<=i, what ever possibe positive
value greater than zero ,it may be.
Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
Is it cc or c in a letter?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
Explain how does flowchart help in writing a program?
What extern c means?
What is the difference between far and near in c?
What does != Mean in c?
what do u mean by Direct access files? then can u explain about Direct Access Files?
What is difference between array and structure in c?
What does nil mean in c?
any "C" function by default returns an a) int value b) float value c) char value d) a & b
How do you list files in a directory?
what type of questions arrive in interview over c programming?
What is function what are the types of function?
What is meant by type specifiers?
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures