what will be the output of this program
main()
{
int i=1;
while (i<=10);
{
i++;
}
}
Answers were Sorted based on User's Feedback
Explain what does a function declared as pascal do differently?
What are data breakpoints?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
Is it possible to pass an entire structure to functions?
Is there a way to compare two structure variables?
what is the code for getting the output as * ** ***
what type of language is C?
What is .obj file in c?
Differentiate between static and dynamic modeling.
what does the following function print? func(int i) { if(i%2)return 0; eale return 1; } main() { int =3; i=func(i); i=func(i); printf("%d",i);}
wat are the two methods for swapping two numbers without using temp variable??
What is nested structure with example?