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
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
What functions are in conio h?
What does int main () mean?
Is it possible to pass an entire structure to functions?
What does %d do in c?
Why is %d used in c?
What is %d used for?
Why main function is special give two reasons?
int i=10; printf("%d %d %d", i, i=20, i);
What is a method in c?
Explain the use of fflush() function?
I heard that you have to include stdio.h before calling printf. Why?
What is atoi and atof in c?
How we can insert comments in a c program?
What is selection sort in c?