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
How will you declare an array of three function pointers where each function receives two ints and returns a float?
What do you mean by a local block?
What are the various types of control structures in programming?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
What is %d used for?
What is c standard library?
How can I dynamically allocate arrays?
What is a void * in c?
What is the advantage of an array over individual variables?
Why double pointer is used in c?
What is realloc in c?
What is register variable in c language?
Define macros.
What are high level languages like C and FORTRAN also known as?
What is header file definition?