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
Write a program to check prime number in c programming?
What is the advantage of a random access file?
How do you write a program which produces its own source code as output?
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
any string of bits of length 'n' represents a unique non- negative integer between.............?
study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above
What is scope rule of function in c?
what is the use of ~ in c lang?????
Why the below program throughs error during compilation? #include<stdio.h> #include<conio.h> enum { ZERO, ONE, TWO, }; main() { printf("%d",&TWO); getch(); }
write a C program to print the program itself ?!
how to find out the union of two character arrays?
I have one doubt. What does below statement mean? #define sizeof(operator) where operator can be int or float etc. Does this statement meaningful and where it can be used?