what will be the output of this program
main()
{
int i=1;
while (i<=10);
{
i++;
}
}
Answer Posted / shanmuga priya
10
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How many types of operators are there in c?
Do pointers need to be initialized?
a formula,a series of steps,or well defined set of rules for solving a problem a) algorithem b) program c) erdiagram d) compiler
What is wrong with this declaration?
What are the disadvantages of external storage class?
Is there any possibility to create customized header file with c programming language?
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 “****”.
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
What is extern keyword in c?
What is bash c?
Function which gives a pointer to a binary trees const an integer value at each code, return function of all the nodes in binary tree.?
What is a pointer and how it is initialized?
Is there sort function in c?
Difference between macros and inline functions? Can a function be forced as inline?
What are enumerated types?