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 |
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
What is clrscr ()?
Why do we use header files in c?
how can we use static and extern?and where can we use this?
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
Can we add pointers together?
Why use int main instead of void main?
What will be the output of x++ + ++x?
Explain how can you check to see whether a symbol is defined?
What are structure types in C?
Explain the bubble sort algorithm.
Why C language is a procedural language?