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 c program that prints all multiples of 3between 1
and 50.

Answer Posted / dj

#include<stdio.h>
#include<conio.h>
Void main()
{
int i;
for(i=1;i<=50;i++)
{
if(i%3==0)
{
printf("%d",i);
}
}
grtch();
}

Is This Answer Correct ?    24 Yes 13 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

can any one provide me the notes of data structure for ignou cs-62 paper

2232


How #define works?

1162


Explain what is a stream?

1145


What are multibyte characters?

1193


Explain how do you print an address?

1207


What is static memory allocation? Explain

1138


Why we use break in c?

1075


The statement, int(*x[]) () what does in indicate?

1205


Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)

1092


What is atoi and atof in c?

1137


If the size of int data type is two bytes, what is the range of signed int data type?

1073


What are the general description for loop statement and available loop types in c?

1171


What is a function simple definition?

1170


What is the use of #include in c?

1131


Are local variables initialized to zero by default in c?

1101