how many times does the loop iterated ?
for (i=0;i=10;i+=2)
printf("Hi\n");
Answer Posted / ani
infinite loop, bcoz there is no condition to break the loop.
| Is This Answer Correct ? | 16 Yes | 3 No |
Post New Answer View All Answers
what is the difference between class and unio?
What is operator precedence?
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.
What are the 5 organizational structures?
What is preprocessor with example?
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
Differentiate between a for loop and a while loop? What are it uses?
A c program to display count values from 0 to 100 and flash each digit for a secong.reset the counter after it reaches 100.use for loop,. pls guys hepl me.. :(
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
How macro execution is faster than function ?
How can I send mail from within a c program?
Which is better between malloc and calloc?
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
Not all reserved words are written in lowercase. TRUE or FALSE?
What is hungarian notation? Is it worthwhile?