Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

write a program for odd numbers?

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


Please Help Members By Posting Answers For Below Questions

What is the difference between c &c++?

1203


How can you tell whether two strings are the same?

1305


What are high level languages like C and FORTRAN also known as?

1232


What is optimization in c?

1067


typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?

1683


What is equivalent to ++i+++j?

1145


What is the use of clrscr?

1156


What is meant by realloc()?

1200


What are qualifiers and modifiers c?

1054


Explain what are global variables and explain how do you declare them?

1229


Define macros.

1322


What is the difference between variable declaration and variable definition in c?

1097


What is #define size in c?

1261


What the advantages of using Unions?

1291


Why is sprintf unsafe?

1126