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

Give differences between - new and malloc() , delete and free() ?

1039


Explain the difference between #include "..." And #include <...> In c?

980


I need previous papers of CSC.......plz help out by posting them.......

2243


How do you write a program which produces its own source code as output?

1056


What is the difference between array and linked list in c?

1079


When should I declare a function?

1054


What are called c variables?

1009


write a c program for swapping two strings using pointer

2565


Explain how can I manipulate strings of multibyte characters?

1153


Why do we use main function?

1103


What is the heap?

1149


What is define c?

997


What is the sizeof () operator?

1010


If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?

1196


Is c pass by value or reference?

994