what will be the output of this program
main()
{
int i=1;
while (i<=10);
{
i++;
}
}
Answer Posted / prashanthi
2
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
Differentiate between the = symbol and == symbol?
What is malloc calloc and realloc in c?
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..
Define Array of pointers.
swap 2 numbers without using third variable?
How can you restore a redirected standard stream?
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
How can this be legal c?
What is malloc() function?
Iam a B.Tech graduate and completed my engineering in 2009, from 2005 to 2009 and after that i had done nothing.Now i want to do job and get into BPO field . Friends give me suggestions as what to say in interview... if they ask me that what would you had done ... these many years without doing job ??????? pls urgent
How does struct work in c?
Is c dynamically typed?
What is a wrapper function in c?
What do header files do?
Why does notstrcat(string, "!");Work?