#‎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
What is modeling?
How can I run c program?
Tell me is null always defined as 0(zero)?
What is extern variable in c with example?
Is c++ based on c?
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
can anyone suggest some site name..where i can get some good data structure puzzles???
1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321
Why c is known as a mother language?
What are all different types of pointers in c?
Why c is called object oriented language?
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }
Explain about C function prototype?
shorting algorithmS
Are the variables argc and argv are always local to main?