what will be the output of this program
main()
{
int i=1;
while (i<=10);
{
i++;
}
}
Answer Posted / abdulhamid
just wanna know
| Is This Answer Correct ? | 0 Yes | 4 No |
Post New Answer View All Answers
What is enumerated data type in c?
What is a keyword?
Explain how can I read and write comma-delimited text?
what do the 'c' and 'v' in argc and argv stand for?
Explain what math functions are available for integers? For floating point?
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
How will you delete a node in DLL?
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
How does pointer work in c?
How can I use a preprocessorif expression to ?
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
What is c programming structure?
State the difference between x3 and x[3].
What is #define size in c?
Write a program to print "hello world" without using a semicolon?