Answer Posted / keerthana
#include<stdio.h>
void main()
{
int n,i;
scanf("%d",&n);
for(i=0;i<=n;i++)
{
if(n%2)!=0)
printf("Odd numbers",n);
}
}
| Is This Answer Correct ? | 11 Yes | 3 No |
Post New Answer View All Answers
What is the use of clrscr?
what are # pragma staments?
Differentiate between Macro and ordinary definition.
What is calloc malloc realloc in c?
What is typedf?
What are pointers? Why are they used?
What is function prototype in c language?
What are runtime error?
What is a program?
What is an identifier?
What is typedef struct in c?
What is meant by recursion?
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
How can I make sure that my program is the only one accessing a file?
What is the difference between text files and binary files?