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
Are global variables static in c?
Define macros.
Is c a great language, or what?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
How many header files are in c?
What is unsigned int in c?
What are the different types of C instructions?
Explain modulus operator.
Explain what is the best way to comment out a section of code that contains comments?
What is static identifier?
Explain the use of fflush() function?
What is the benefit of using #define to declare a constant?
What is strcpy() function?
What are local static variables?
What are file streams?