write a Program to dispaly upto 100 prime numbers(without
using Arrays,Pointer)
Answer Posted / paras patel
#include <stdio.h>
#include <conio.h>
int divide(int x ,int y)
{
while(x>y)
{
x-=y;
}
if(x==y)
{
x=0;
}
return x;
}
void main()
{
int c,i,n;
scanf("%d",&n);
clrscr();
for( i=2;i<=n;i++)
{
if(divide(n,i)==0)
{
break;
}
}
if(i!=n)
{
printf("not prime");
}
else
{
printf("prime");
}
getch();
}
| Is This Answer Correct ? | 16 Yes | 17 No |
Post New Answer View All Answers
a program that can input number of records and can view it again the record
How can you determine the maximum value that a numeric variable can hold?
What are operators in c?
Explain the Difference between the New and Malloc keyword.
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
What is the difference between if else and switchstatement
What is a pointer value and address in c?
How does free() know explain how much memory to release?
What is an operator?
What are nested functions in c?
Explain how can I write functions that take a variable number of arguments?
What is difference between structure and union in c programming?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
hi friends how r u as soon in satyam my interview is start but i m very confusued ta wat i do plz help me frndz wat can i do plz tell me some question and answers related with "C" which r asked in the interview .