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 strcpy() function?
Where in memory are my variables stored?
What are the basic data types associated with c?
What are the disadvantages of external storage class?
Stimulate calculator using Switch-case-default statement for two numbers
What is the advantage of using #define to declare a constant?
Explain indirection?
What are identifiers c?
Can we assign integer value to char in c?
How many levels of indirection in pointers can you have in a single declaration?
What is f'n in math?
What is pointer to pointer in c with example?
#include
How do you print only part of a string?
Explain about the constants which help in debugging?