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
What is the use of sizeof?
Is null a keyword in c?
Does c have enums?
How to explain the final year project as a fresher please answer with sample project
What is pragma c?
How can you allocate arrays or structures bigger than 64K?
Can we initialize extern variable in c?
What is difference between scanf and gets?
Why is this loop always executing once?
Explain b+ tree?
Why use int main instead of void main?
What does void main return?
What are the standard predefined macros?
What is ctrl c called?
What is the purpose of the statement: strcat (S2, S1)?