what will be the output of this program
main()
{
int i=1;
while (i<=10);
{
i++;
}
}
Answer Posted / harun
11
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is the use of in c?
Can we use any name in place of argv and argc as command line arguments?
What are external variables in c?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
Why we use break in c?
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
What is a program flowchart and how does it help in writing a program?
In a switch statement, what will happen if a break statement is omitted?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
What do you mean by a local block?
What is string concatenation in c?
What is wrong with this program statement? void = 10;
Why do we need volatile in c?