answersLogoWhite

0


Best Answer

This is a homework question and does not deserve an answer because you will learn nothing other than being lazy.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Write a c program to print prime numbers from 1 to 10000 that has an unit digit which is multiple of 3?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you write 10000 as a product of three numbers?

bob saget


Tamil numbers 10000 to 50000 how to write in Tamil?

10,000 - patthaayiram50,000 - aaimbathaayiram


Write the two 5-digit numbers that have the greatest difference?

10000 and 99999


Write a program in Lex to eliminate white space and collect numbers as a token?

write a lex program to delete space from the program


How do you write an assembly language program to find the sum of n numbers using array?

write an assembly language program to find sum of N numbers


How do you write numbers 14 ten thousands 12 thousands?

14*10000+12000 = 152000


How do you write twenty-three and fifty-six ten thousandths in numbers?

23 and 56/10000


What is the sum of the digits needed to write all the whole numbers from 0 to 10000 inclusive?

It is 180,001.


Shell program for gcd of three given numbers?

write a shell program for finding out gcd of three given numbers? write a shell program for finding out gcd of three given numbers? write a shell program for finding out gcd of three given numbers? check bellow link http://bashscript.blogspot.com/2009/08/gcd-of-more-than-two-numbers.html


How do you write a program in objective c numbers 1-100 prime numbers?

fdsgfhgdfhgdf


Could you Write a program for 8086 microprocessor that displays on the monitor the average of 2 numbers from an array?

How to write a program for mouse in microprocessor?


How do you Write a java program with a while loop to find smallest n such that n2 is greater than 10000?

int n = 0; while( (n*n) <= 10000 ) { ++n; }