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 |
What are operators in c?
what is the hardware model of CFG( context free grammar)
Why is extern used in c?
What is wrong with this statement? Myname = 'robin';
Why static variable is used in c?
What are high level languages like C and FORTRAN also known as?
What is the advantage of using #define to declare a constant?
0 Answers Agilent, ZS Associates,
program to find a smallest number in an array
The C language terminator is a.semicolon b.colon c.period d.exclamation mark
write a program to search for an element in a given array. If the array was found then display its position otherwise display appropriate message in c language
What is NULL pointer?
Can we replace the struct function in tree syntax with a union?