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 context in c?
What are the types of arrays in c?
What are reserved words?
What is c language & why it is used?
Explain the use of function toupper() with and example code?
What is a function simple definition?
Explain what are header files and explain what are its uses in c programming?
What is unsigned int in c?
What is the use of a ‘ ’ character?
What type is sizeof?
Is c easy to learn?
Can you please explain the difference between exit() and _exit() function?
"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks
Can you write the function prototype, definition and mention the other requirements.
What is quick sort in c?