Write a program for print infinite numbers

Answer Posted / chavidi

void main()
{
int i=0;
while()
{
printf("%d",i)
i++;
}
}

Is This Answer Correct ?    25 Yes 12 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is file in c language?

581


How are structure passing and returning implemented?

594


What is the difference between text and binary modes?

650


What is cohesion and coupling in c?

596


we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?

805






What is wrong with this program statement? void = 10;

828


praagnovation

1781


What is difference between scanf and gets?

616


Differentiate between the = symbol and == symbol?

722


how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software

2803


Explain how do you view the path?

661


Explain built-in function?

595


How can you tell whether a program was compiled using c versus c++?

622


What is linear search?

678


how to write optimum code to divide a 50 digit number with a 25 digit number??

2757