|
INTERVIEW QUESTIONS
PROGRAMMING LANGUAGES
C
DETAILS
Question: I want source code of series of prime numbers.
Answer: #include<stdio.h> main() { long i,n; printf("Up To which range do u wnt prime no: "); scanf("%ld",&n); printf("The prime numbers with 1 to %ld range are......
",n); for(i=1;i<=n;i++) { for(j=1,k=0;j<i;j++) {if(i%j==0) k++; if(k>1) break; } if(k==1) printf("%5ld",i); } }
|
|
|
Category |
C Interview Questions & Answers -
Exam Mode /
Learning Mode
|
Rating |
(0.2) By 9123 users |
Added on |
5/18/2013 |
Views |
72434 |
Rate it! |
|
|
Question:
I want source code of series of prime numbers.
Answer:
#include<stdio.h> main() { long i,n; printf("Up To which range do u wnt prime no: "); scanf("%ld",&n); printf("The prime numbers with 1 to %ld range are......
",n); for(i=1;i<=n;i++) { for(j=1,k=0;j<i;j++) {if(i%j==0) k++; if(k>1) break; } if(k==1) printf("%5ld",i); } } Source: CoolInterview.com
Answered by: Gurunadh Reddy | Date: 7/8/2008
| Contact Gurunadh Reddy
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.
|
|
Related Questions |
View Answer |
|
There is any methodology in which we can print a string in c without using semicolon(;) suggest me if there is ?
|
View Answer
|
|
What is the difference between the following statements? int a[4]={1,2,3,4}; int a[]={1,2,3,4);
|
View Answer
|
|
How can we get direct printout of a c file without giving print command from bin or tc?eg i want to get the printout of a program directly after execution from the c window itself.
|
View Answer
|
|
Write a C program that will convert Simple Sentence to Complex/Compound Sentence.
|
View Answer
|
|
Can anyone share his code which would accept a sentence, then count the number occurrence of the words excluding spaces.All is done using linked list.
|
View Answer
|
|
using c-strings write a program that will analyse the text"1.1my brother is taller than me.1.2 I am a boy of sixteen years old". The program should remove multiple spaces betweem words,find the longest word in the text,search and identify the number of letters"e", extact the number of integers , extract the number of doubles, extract the number of words in each sentence and identify the number of sentences in the text.
|
View Answer
|
|
Q.8 When a 'C' function call is made, the order in which parameters passed to the function are pushed into the stack is (a) left to right (b) right to left (c) bigger variables are moved first than the smaller variables. (d) smaller variables are moved first than the bigger ones (c) none of the above.
|
View Answer
|
|
void main() { float a= 0.7; if (a < 0.7) printf("c"); else printf("c++"); } Output of the above program is c. Why? Whereas the same program with 0.8 instead of 0.7 gives c++ as the output? Why explain?
|
else printf("c++") - C Interview Questions & Answers">
View Answer
|
|
What is difference between the test effort and the test procedure?
|
View Answer
|
|
How to write a program for pascal triangle?
|
View Answer
|
|
Write a program to remove comment lines and blank lines from an error free c program.
|
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 C Interview Questions & Answers - Exam Mode /
Learning Mode
|