Write a program to check prime number in c programming?
No Answer is Posted For this Question
Be the First to Post Answer
find second largest element in array w/o using sorting techniques? use onle one for loop.
15 Answers BitWise, Zycus Infotech,
Is multithreading possible in c?
What do you mean by c what are the main characteristics of c language?
Explain how many levels deep can include files be nested?
. 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.
#define d 10+10 main() { printf("%d",d*d); }
what is the code to display color fonts in the output?
a value that does not change during program execution a) variabe b) argument c) parameter d) none
Is it possible to pass an entire structure to functions?
Every time i run a c-code in editor, getting some runtime error and editor is disposing, even after reinstalling the software what may be the problem?
Give the logic for this #include<stdio.h> #include<conio.h> void main() { clrscr(); int a=10,b; b=++a + ++a; printf("%d", b); getch(); } Output: 24......How?
write a program to interchange the value between two variable without using loop