Answer Posted / narendra
#include<stdio.h>
#include<conio.h>
void main()
{
int num;
clrscr();
printf("enter ur range:");
scanf("%d",&num);
for(i=1;i<=num;i+2)
printf("%d",num);
getch();
}
Is This Answer Correct ? | 27 Yes | 19 No |
Post New Answer View All Answers
What is the maximum no. of arguments that can be given in a command line in C.?
What are header files why are they important?
Explain how do you list a file’s date and time?
What is line in c preprocessor?
What is p in text message?
How do I swap bytes?
What are register variables? What are the advantage of using register variables?
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
What is the significance of scope resolution operator?
What is a structure member in c?
What are shell structures used for?
What is difference between union All statement and Union?
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
Can main () be called recursively?
How does selection sort work in c?