Write a program to check prime number in c programming?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

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

2 Answers  


What are external variables in c?

0 Answers  


How do we swap or interchange any 2 numbers without using Temporary variable...Anybody can pls answer it.. Thanks in Advance

8 Answers  


. A database table called PERSON contains the fields NAME, BASIC and HRA. Write a computer program to print a report which employee name and total salary for those employees whose total salary is more than 10,000. Total Salary = BASIC + HRA. At the end, the program should also print the total number of employees whose total salary is more than 10,000.

1 Answers  


int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain me output????

1 Answers  






Why isn't any of this standardized in c? Any real program has to do some of these things.

0 Answers  


Are there constructors in c?

0 Answers  


What are pointers in C?

5 Answers   KPIT,


In a switch statement, what will happen if a break statement is omitted?

0 Answers  


How are structure passing and returning implemented?

0 Answers  


What is the main differences between C and Embedded C?

9 Answers  


what is the output? #define fun(a,b,t) (g ##t=(a),(a)=(b),(b)=g##t) float gfloat; main() { float a=1.12,b=3.14; fun (a,b,float); printf("na=%4.2f,b=%4.2f",a,b); } A)Error in Defining Macro B)a=1.12,b=3.14 C)a=3.14,b=1.12 D)None of the Above

3 Answers   Accenture, Infosys, Wipro,


Categories