Answer Posted / lakhan patidar
#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 ? | 16 Yes | 12 No |
Post New Answer View All Answers
What is the difference between c &c++?
How can you tell whether two strings are the same?
What are high level languages like C and FORTRAN also known as?
What is optimization in c?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
What is equivalent to ++i+++j?
What is the use of clrscr?
What is meant by realloc()?
What are qualifiers and modifiers c?
Explain what are global variables and explain how do you declare them?
Define macros.
What is the difference between variable declaration and variable definition in c?
What is #define size in c?
What the advantages of using Unions?
Why is sprintf unsafe?