Write a program to check whether a number is prime or not using c?
No Answer is Posted For this Question
Be the First to Post Answer
How can I copy just a portion of a string?
What is header file definition?
What is the difference between a structure and a union?
Which of the following is not an infinite loop ? a.while(1){ .... } b.for(;;){ ... } c.x=0; do{ /*x unaltered within theloop*/ ... }while(x==0); d.# define TRUE 0 ... while(TRUE){ .... }
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
Write a code to determine the total number of stops an elevator would take to serve N number of people.
c program to print a name without using semicolon
wat is output of the following int main() { const int j=2; int i; switch(i) { case 1:break; case j:break; default:break; } }
Why do we write return 0 in c?
what is the maximum limit of row and column of a matrix in c programming. in linux .
Write a program to swap two numbers without using a temporary variable?
What is meant by type casting?