what will be the output of this program
main()
{
int i=1;
while (i<=10);
{
i++;
}
}
Answer Posted / niranjan kumar niraj
output is 1
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration
What type is sizeof?
How are variables declared in c?
Write a program on swapping (100, 50)
What are header files why are they important?
An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.
Explain how can I write functions that take a variable number of arguments?
Compare array data type to pointer data type
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?
How do you do dynamic memory allocation in C applications?
Explain do array subscripts always start with zero?
show how link list can be used to repersent the following polynomial i) 5x+2
Why c is called object oriented language?