main()
{
intj;
while9j<=10)
{
printf("\n%d",j);
j=j+1;
}
}
Answers were Sorted based on User's Feedback
Answer / ritesh kumar
Since variable j is not initialised it will contain garbage
value hence the output(imposed on the while loop condition)
may be unexpected ..
| Is This Answer Correct ? | 13 Yes | 1 No |
Explain what math functions are available for integers? For floating point?
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
difference between loading and linking
what is the diff between the printf and sprintf functions?? and what is the syntax for this two functions ??
What is void c?
What is typeof in c?
What is the restrict keyword in C?
What is false about the following A compound statement is a.A set of simple statments b.Demarcated on either side by curly brackets c.Can be used in place of simple statement d.A C function is not a compound statement.
Why doesn't C have nested functions?
write function to reverse char array ... without using second array
ASCII stands for
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)