what will be the output of this program
main()
{
int i=1;
while (i<=10);
{
i++;
}
}
Answers were Sorted based on User's Feedback
how to write a program which adds two numbers without using semicolon in c
Why is python slower than c?
f=(x>y)?x:y a) f points to max of x and y b) f points to min of x and y c)error
how should functions be apportioned among source files?
Write a code to generate divisors of an integer?
Should a function contain a return statement if it does not return a value?
write a c program for print your name .but,your name may be small letter mean print a capital letter or your name may be capital letter mean print a small letter .example \\enter ur name : sankar The name is: SANKAR (or) enter your name:SAnkar The name is:saNKAR
how to find a 5th bit is set in c program
What is sizeof array in c?
Q.11 Generate the following pattern using code in any language(c/c++/java) for n no. of rows 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
What are disadvantages of C language.
Explain what is the difference between declaring a variable and defining a variable?