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
what is the purpose of the code, and is there any problem with the code? int f( int n, int l, int r ) { return (n << l) >> r; }
What are the differences between new and malloc in C?
print out of string in this format; 1. "rajesh" 2. \n 3. %d
int array[]={1,2,3,4,5,6,7,8}; #define SIZE (sizeof(array)/sizeof(int)) main() { if(-1<=SIZE) printf("1"); else printf("2"); }
int main() { int *p=new int; *p=10; del p; cout<<*p; *p= 60; cout<<*p; } what will be the output & why?
What will be the result of the following C language program? main() { int a = 0; int b = 20; char x = 1; char y = 10; if(a,b,x,y) printf("Welcome"); }
Can we assign integer value to char in c?
whenever a question is posted in a particular category in allinterview.com, Is there any facility to receive an indication mail. For eg: I need to receive an indication email, whenever a question is posted under the category “C Langauage”.
Is c still used?
What is difference between %d and %i in c?
How can you invoke another program from within a C program?
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.