Write a C program to print 1 2 3 ... 100 without using
loops?
Answer Posted / vivek
void main()
{
int i=1;
if(i<=100)
printf("%d",i);
continue;
getch();
}
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
Write a program with dynamically allocation of variable.
What are linker error?
What is the use of f in c?
How can I read data from data files with particular formats?
What is #line?
Write the test cases for checking a variable having value in range -10.0 to +10.0?
What is function and its example?
How do you list a file’s date and time?
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
What is getch?
What are the __date__ and __time__ preprocessor commands?
What is binary tree in c?
How can you find out how much memory is available?
can any one provide me the notes of data structure for ignou cs-62 paper
What does char * * argv mean in c?