Sponsored Links

Interview Questions



INTERVIEW QUESTIONS C BRANCHES & LOOPS IN C DETAILS

Question: How can we find out prime numbers from 1 to 50?

Answer: #include<stdio.h>
#include<conio.h>
void main()
{
int i,j,c,n;
clrscr();
for(i=2;i<50;i++)
{
c=0;
for(j=2;j<i;j++)
{
if(i%j==0)
c++;
}
if(c==0)
printf("%d
",i);
}
getch();
}

Category Branches & Loops in C Interview Questions & Answers - Exam Mode / Learning Mode
Rating (0.3) By 7707 users
Added on 11/15/2013
Views 66232
Rate it!

Question: How can we find out prime numbers from 1 to 50?

Answer:

#include<stdio.h>
#include<conio.h>
void main()
{
int i,j,c,n;
clrscr();
for(i=2;i<50;i++)
{
c=0;
for(j=2;j<i;j++)
{
if(i%j==0)
c++;
}
if(c==0)
printf("%d
",i);
}
getch();
} Source: CoolInterview.com

Answered by: sudheer | Date: 11/18/2008 | Contact sudheer Contact sudheer

a better algo.....
#include<math.h>
#include<stdio.h>
void main()
{
int i,j,c,n;
clrscr();
for(i=2;i<50;i++)
{
c=0;
for(j=2;j<sqrt(i);j++)
{
if(i%j==0)
c++;
}
if(c==0)
printf("%d
",i);
}
getch();
} Source: CoolInterview.com

Answered by: jaideep | Date: 12/1/2008 | Contact jaideep Contact jaideep

main(){
int a,b,c;
a=2;
while(a<=50){
b=a-1;
while(b>1){
if(a%b==0)
printf("it is a%d prime number",a);}
a++;
} Source: CoolInterview.com

Answered by: nagaraju.botsa | Date: 12/19/2008 | Contact nagaraju.botsa Contact nagaraju.botsa

#include<math.h>
#include<stdio.h>
void main()
{
int i,j,c,n;
clrscr();
for(i=2;i<50;i++)
{
c=0;
for(j=2;j<sqrt(i);j++)
{
if(i%j==0)
c++;
}
if(c==0)
printf("%d
",i);
}
getch();
}
Source: CoolInterview.com

Answered by: ucm | Date: 12/24/2008 | Contact ucm Contact ucm

#include<stdio.h>
#include<conio.h>
void main()
{
int i,j,flag;
for(i=1;i<=50;i++)
{
flag=1;
for(j=2;j<i;j++)
{
if(i%j==0)
{
flag=0;
break;
}}
if(flag==1)
printf(" %d is Prime",i);
}
Source: CoolInterview.com

Answered by: DEBASIS NAYAK | Date: 1/4/2009 | Contact DEBASIS NAYAK Contact DEBASIS NAYAK

#include<stdio.h>
#include<conio.h>
void main()
{
int i,j,flag;
for(i=1;i<=50;i++)
{
flag=1;
for(j=2;j<i;j++)
{
if(i%j==0)
{
flag=0;
break;
}}
if(flag==1)
printf(" %d is Prime",i);
}



Source: CoolInterview.com

Answered by: vinayak sharma | Date: 8/18/2009 | Contact vinayak sharma Contact vinayak sharma

#include
main()

{

int number, div, ifprime;

clrscr();

for (number=2;number<=50;number++)

{

for (div=2; div

{

if (number%div==0)

{

ifprime=0;

break;

}

ifprime=1;

}

if (ifprime)

{

printf("
%d", number);

}

}

getch();

}



Source: CoolInterview.com

Answered by: Naveen | Date: 8/25/2009 | Contact Naveen Contact Naveen


If you have the better answer, then send it to us. We will display your answer after the approval.
Rules to Post Answers in CoolInterview.com:-
  • There should not be any Spelling Mistakes.
  • There should not be any Gramatical Errors.
  • Answers must not contain any bad words.
  • Answers should not be the repeat of same answer, already approved.
  • Answer should be complete in itself.
Name :*
Email Id :*
Answer :*
Verification Code Code Image - Please contact webmaster if you have problems seeing this image code Not readable? Load New Code
Process Verification Enter the above shown code: *
Inform me about updated answers to this question

Related Questions
View Answer
write a C program for to aggregate a 8*8 matrix to 4*4 matrix using formula b11=(a11+a12+a21+a22)?
View Answer
Write a pro gramme to show bubble sort on a set of 10 numbers?
View Answer
Give some explanation for "for" LOOP ON C LANGUAGE?
View Answer
/*Are my STATEMENTS in the following program correct
EXCEPT IN CASE 3 THE ARE WRONG SO PLEASE CORRECT IT*/
#include<stdio.h>
#include<conio.h>
#include<alloc.h>

void main()
{
int i=3;
int j;
clrscr();

//case 1:
//when only post increment in the expr then all 'i' get initial value
j = (i + i++);
printf("
POST");
printf("
i=%d j=%d", i ,j);

i=3;j=0;
j = (i++ + i++ + i);
printf("
i=%d j=%d", i ,j);


//case2:
//when only pre increment in the expr then all 'i' get final value
i=3;j=0;
j = (++i + i);
printf("
PRE");
printf("
i=%d j=%d", i ,j);


i=3;j=0;
j = (++i + ++i + i + ++i + ++i);
printf("
i=%d j=%d", i ,j);


//case 3:
/*when both pre and post increment in the expr then
A] i++ will get initial 'i' value and
B] ++i will get last incremented value
C] i in the increment expression takes the last second incremented
value means if final ++i/i++ gives value 5 then simply 'i' will
posses value 4 irrespective of the positon of i in the increment exp*/
printf("
POST AND PRE");
i=3;j=0;
j = ( i++ + i + ++i + ++i +i + i + i++);
printf("
i=%d j=%d", i ,j);

i=3;j=0;
j = (i++ + ++i + i);
printf("
i=%d j=%d", i ,j);
getch();
}
View Answer
void main()
{
int x=20,y=35;
x= y++ + x++;
y= ++y + ++x;
printf("
%d %d" , x,y);
}
/* please tell me the value of x and y at each and every moment. i dont need the answer but the explanation of the anamolus behavior of increment expression.*/
%d %d" , x,y); View Answer
How to print 1 to 100 without using any conditional loop?
View Answer
How to decide even and odd values without decision making loops?
View Answer
Nesting of loops in C may continue upto how many levels?
View Answer
if "condition"
printf("Hello");
else
printf("World")

what should be the condition,
so the output will be HelloWorld.
printf("Hello");
else
printf("World")

what should be the c - Branches & Loops in C Interview Questions & Answers"> View Answer
C Program to print the following series:
1
1 2
1 2 3
1 2 3 4
1 2 3 4 5
View Answer
fibbonaci series program

View Answer
why n++ executes faster than n+1?


View Answer
main()
{
float me = 1.1;
double you = 1.1;
if(me==you)
printf("I love U");
else
printf("I hate U");
}


else
View Answer
x) main()
{
printf("%x",-1<<4);
}


}


- Branches & Loops in C Interview Questions & Answers"> View Answer
How to find entered number is EVEN or ODD without using conditional statement(not using if.. else,if.. , else if..,while, do... while...., for....)

View Answer
Can include files be nested?
View Answer
Is NULL always defined as 0?
View Answer
Which expression always return true? Which always return false?
View Answer

Please Note: We keep on updating better answers to this site. In case you are looking for Jobs, Pls Click Here Vyoms.com - Best Freshers & Experienced Jobs Website.

View All Branches & Loops in C Interview Questions & Answers - Exam Mode / Learning Mode



User Options
India News Network

Latest 20 Questions
Payment of time- barred debt is: (a) Valid (b) Void (c) Illegal (d) Voidable
Consideration is defined in the Indian Contract Act,1872 in: (a) Section 2(f) (b) Section 2(e) (c) Section 2(g) (d) Section 2(d)
Which of the following is not an exception to the rule, "No consideration, No contract": (a) Natural love and affection (b) Compensation for involuntary services (c) Completed gift (d) Agency
Consideration must move at the desire of: (a) The promisor (b) The promisee (c) The promisor or any other party (d) Both the promisor and the promisee
An offer which is open for acceptance over a period of time is: (a) Cross Offer (b) Counter Offer (c) Standing Offer (d) Implied Offer
Specific offer can be communicated to__________ (a) All the parties of contract (b) General public in universe (c) Specific person (d) None of the above
_________ amounts to rejection of the original offer. (a) Cross offer (b) Special offer (c) Standing offer (d) Counter offer
A advertises to sell his old car by advertising in a newspaper. This offer is caleed: (a) General Offer (b) Special Offer (c) Continuing Offer (d) None of the above
In case a counter offer is made, the original offer stands: (a) Rejected (b) Accepted automatically (c) Accepted subject to certain modifications and variations (d) None of the above
In case of unenforceable contract having some technical defect, parties (a) Can sue upon it (b) Cannot sue upon it (c) Should consider it to be illegal (d) None of the above
If entire specified goods is perished before entering into contract of sale, the contract is (a) Valid (b) Void (c) Voidable (d) Cancelled
______________ contracts are also caled contracts with executed consideration. (a) Unilateral (b) Completed (c) Bilateral (d) Executory
A offers B to supply books @ Rs 100 each but B accepts the same with condition of 10% discount. This is a case of (a) Counter Offer (b) Cross Offer (c) Specific Offer (d) General Offer
_____________ is a game of chance. (a) Conditional Contract (b) Contingent Contract (c) Wagering Contract (d) Quasi Contract
There is no binding contract in case of _______ as one's offer cannot be constructed as acceptance (a) Cross Offer (b) Standing Offer (c) Counter Offer (d) Special Offer
An offer is made with an intention to have negotiation from other party. This type of offer is: (a) Invitation to offer (b) Valid offer (c) Voidable (d) None of the above
When an offer is made to the world at large, it is ____________ offer. (a) Counter (b) Special (c) General (d) None of the above
Implied contract even if not in writing or express words is perfectly _______________ if all the conditions are satisfied:- (a) Void (b) Voidable (c) Valid (d) Illegal
A specific offer can be accepted by ___________. (a) Any person (b) Any friend to offeror (c) The person to whom it is made (d) Any friend of offeree
An agreement toput a fire on a person's car is a ______: (a) Legal (b) Voidable (c) Valid (d) Illegal



Fresher Jobs | Experienced Jobs | Government Jobs | Walkin Jobs | Company Profiles | Interview Questions | Placement Papers | Companies In India | Consultants In India | Colleges In India | Exams In India | Latest Results | Notifications In India | Call Centers In India | Training Institutes In India | Job Communities In India | Courses In India | Jobs by Keyskills | Jobs by Functional Areas

Testing Articles | Testing Books | Testing Certifications | Testing FAQs | Testing Downloads | Testing Interview Questions | Testing Jobs | Testing Training Institutes

Gate Articles | Gate Books | Gate Colleges | Gate Downloads | Gate Faqs | Gate Jobs | Gate News | Gate Sample Papers | Gate Training Institutes

MBA Articles | MBA Books | MBA Case Studies | MBA Business Schools | MBA Current Affairs | MBA Downloads | MBA Events | MBA Notifications | MBA FAQs | MBA Jobs
MBA Job Consultants | MBA News | MBA Results | MBA Courses | MBA Sample Papers | MBA Interview Questions | MBA Training Institutes

GRE Articles | GRE Books | GRE Colleges | GRE Downloads | GRE Events | GRE FAQs | GRE News | GRE Training Institutes | GRE Sample Papers

IAS Articles | IAS Books | IAS Current Affairs | IAS Downloads | IAS Events | IAS FAQs | IAS News | IAS Notifications | IAS UPSC Jobs | IAS Previous Question Papers
IAS Results | IAS Sample Papers | IAS Interview Questions | IAS Training Institutes | IAS Toppers Interview

SAP Articles | SAP Books | SAP Certifications | SAP Companies | SAP Study Materials | SAP Events | SAP FAQs | SAP Jobs | SAP Job Consultants
SAP Links | SAP News | SAP Sample Papers | SAP Interview Questions | SAP Training Institutes |




Copyright ©2003-2024 CoolInterview.com, All Rights Reserved.
Privacy Policy | Terms and Conditions