how many times does the loop iterated ?
for (i=0;i=10;i+=2)
printf("Hi\n");
Answer Posted / altaf khan
it will give an error becoz in place of condition it is given a statement which does not returns boolean value
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
Differentiate between calloc and malloc.
What is the difference between memcpy and memmove?
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
State two uses of pointers in C?
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
Explain how can I pad a string to a known length?
What is I ++ in c programming?
Why doesnt this code work?
What is the difference between declaring a variable by constant keyword and #define ing that variable?
Differentiate call by value and call by reference?
What is volatile variable how do you declare it?
What is include directive in c?
Explain what is the difference between #include and #include 'file' ?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)