Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.
What is meant by inheritance?
What is NULL pointer?
what is computer
Why functions are used in c?
How can I read/write structures from/to data files?
#include <stdio.h> #define sqr(x) (x*x) int main() { int x=2; printf("value of x=%d",sqr(x+1)); } What is the value of x?
16 Answers Accel Frontline, Opera, Oracle,
main() { int a=5; printf(?%d,%d,%d\n?,a,a< <2,a>>2); } Answer: 5,20,1 please explain this code in detail
what is the function of pragma directive in c?
What's the difference between constant char *p and char * constant p?
Does c have class?
Is multithreading possible in c?
What is the use of #include in c?