write a program for odd numbers?
Answers were Sorted based on User's Feedback
Answer / chintu gandhi
main()
{
int i,n;
clrscr();
printf("\nenter range up to which u want to print");
scanf("%d",&n);
for(i=1;i<n;i=i+2)
{
printf("\n%d",i);
}
getch();
}
Is This Answer Correct ? | 75 Yes | 33 No |
Answer / pratikjis@yahoo.com
#include "stdio.h"
#include "conio.h"
void main()
{
int i;
clrscr();
printf("Enter the number");
scanf("%d", &i);
if(i%2==0)
{
printf("the number is even %d", i);
}
else
{
printf("The number is odd %d", i);
}
getch();
}
Is This Answer Correct ? | 36 Yes | 19 No |
Answer / 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 |
Answer / 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 |
Answer / sreeshma
#include<stdio.h>
main()
{
int i,n;
printf("enter a range of numbers");
scanf("%d",&n);
for(i=0;i<=n;i+2)
{
printf("%d",i);
}
break;
getch();
Is This Answer Correct ? | 9 Yes | 5 No |
Answer / aswani
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,c;
clrscr();
printf("enter the two numbers");
scanf("%d %d ",&a,&b);
c=a+b;
printf("%d sum is",c);
getch();
}
Is This Answer Correct ? | 3 Yes | 1 No |
Answer / roopali
#include<stdio.h>
void main()
{
int i;
clrscr();
printf("\n odd numbers?");
scanf("%d",&n);
for(i=0;i<=n;i++)
print i=i+1;
printf("\n %d",i);
getch();
}
Is This Answer Correct ? | 4 Yes | 4 No |
Answer / mahendiran
#include<stdio.h>
#include<conio.h>
void main()
{
int i;
clrscr();
printf("Enter the number");
scanf("%d", &i);
if(i%2==0)
{
printf("the number is even %d", i);
}
else
{
printf("The number is odd %d", i);
}
getch();
}
Is This Answer Correct ? | 1 Yes | 1 No |
Answer / vivek singh
#include<stdio.h>
#include<conio.h>
void main()
{
int num;
printf("Enter the number:");
scanf("%d",&num);
if(num%2==0)
{
printf("Number is Even");
}
else
{
printf("Number is Odd");
}
getch();
}
Is This Answer Correct ? | 1 Yes | 1 No |
What is .obj file in c?
c program to add and delete an element from circular queue using array
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }
i got 75% in all semester am i eligible for your company
why little endian and big endian came?y they using differently? y they not used commonly ?wt is application of little and big ?
what is the use of ‘auto’ keyword?
Does c have circular shift operators?
What is the value of c?
What is string concatenation in c?
why programs in c are running with out #include<stdio.h>? some warnings are display in terminal but we execute the program we get answer why? eg: main() { printf("hello world "); }
Write a function to find the area of a triangle whose length of three sides is given
How to receive strings with spaces in scanf()