#‎include‬<stdio.h>
void main()
{
int i;
for(i=5;0;i++)
{
printf("%d",i);
}
}
Answer Posted / deepika agrawal
an error will be encountered in the begining of the program...
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
How to find a missed value, if you want to store 100 values in a 99 sized array?
Explain what are run-time errors?
Explain what is the difference between functions getch() and getche()?
What is void c?
What is the difference between printf and scanf )?
What is %s and %d in c?
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
Explain what does the function toupper() do?
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
What is fflush() function?
Is c compiled or interpreted?
How can you check to see whether a symbol is defined?
How many keywords (reserve words) are in c?
Explain can static variables be declared in a header file?
What are control structures? What are the different types?