int i =10
main()
{
int i =20,n;
for(n=0;n<=i;)
{
int i=10
i++;
}
printf("%d", i);
Answer Posted / guest
i=20
| Is This Answer Correct ? | 2 Yes | 10 No |
Post New Answer View All Answers
How can I ensure that integer arithmetic doesnt overflow?
What is the mean of function?
what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values
how many key words availabel in c a) 28 b) 31 c) 32
Why does notstrcat(string, "!");Work?
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
What is meant by inheritance?
What is string in c language?
What are logical errors and how does it differ from syntax errors?
Explain the properties of union. What is the size of a union variable
differentiate built-in functions and user – defined functions.
What is an auto variable in c?
What is volatile variable how do you declare it?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
Place the #include statement must be written in the program?