C - Data Types - Discussion

You Are Here :: Home > C > Data Types - Discussion

 



Q.

Find the output of the following program?

#include
int main(int argc, char ** argv)
{
int iValue=1;
do {
printf("%d ",iValue);
} while( --iValue );
return 0;
}

A. 0 B. 10
C. Nothing will be displayed D. 1

Answer: Option D
Explaination:

 


No Explanation








Discussion

Your Comments Goes here...
NameDiscussion