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 meant by int main ()?
write a c program in such a way that if we enter the today date the output should be next day's date.
What is the purpose of sprintf() function?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
Why & is used in c?
What is the importance of c in your views?
What is the best organizational structure?
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
List out few of the applications that make use of Multilinked Structures?
How can my program discover the complete pathname to the executable from which it was invoked?
c program for searching a student details among 10 student details
Suggesting that there can be 62 seconds in a minute?
Write a program on swapping (100, 50)
What is union and structure in c?
Is c dynamically typed?