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 |
how to capitalise first letter of each word in a given string?
what are the uses of structure?
How can I access an I o board directly?
In which language linux is written?
Write a function in c to find the area of a triangle whose length of three sides is given.
what is difference between array of characters and string
write a program for egyptian fractions in c?
In the below code, how do you modify the value 'a' and print in the function. You'll be allowed to add code only inside the called function. main() { int a=5; function(); // no parameters should be passed } function() { /* add code here to modify the value of and print here */ }
we compile c program in 32 processor and 64 bit processor .exe file is created in both the processors. if we want to run .exe file in 64 bit processor which is created in 32 bit processor. is that .exe file is run or not if it is not run why?
Find greatest number out of 10 number without using loop.
What is a scope resolution operator in c?
Which of the following is not a valid declaration for main ()? 1) int main() 2) int main(int argc, char *argv[]) 3) They both work