write a program for odd numbers?

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


Please Help Members By Posting Answers For Below Questions

What is the maximum no. of arguments that can be given in a command line in C.?

868


What are header files why are they important?

795


Explain how do you list a file’s date and time?

786


What is line in c preprocessor?

780


What is p in text message?

722


How do I swap bytes?

817


What are register variables? What are the advantage of using register variables?

879


a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above

855


What is the significance of scope resolution operator?

1103


What is a structure member in c?

738


What are shell structures used for?

780


What is difference between union All statement and Union?

857


What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?

996


Can main () be called recursively?

856


How does selection sort work in c?

799