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 is a const pointer?
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
write a program to sum of its digit with using control structure or with out using loop. for ex: let the number is 25634 then answer will be=2+5+6+3+4=20
what is difference between userlevel threads and kernel level threads ?what are the trades offs between these two approaches ? what approach is most frequently used and why ?
main() { int i=0; while(+(+i--)!=0) i-=i++; printf(i); }
please give code for this 1 2 4 7 11 16
What are data structures in c and how to use them?
what will be the output of" printf("%d%d",scanf("%d% d",&a&b));"
what is the difference between call by value and call by reference?
5 Answers Genpact, Global Logic, Infosys,
How can you call a function, given its name as a string?
what is a headerfile?and what will be a program without it explain nan example?
Write a program to show the workingof auto variable.