whitch value return void main?
Answers were Sorted based on User's Feedback
5) Write a program that takes a 3 digit number n and finds out whether the number 2^n + 1 is prime, or if it is not prime find out its factors.without using big int and exponential function
Difference between constant pointer and pointer to a constant.
Describe the difference between = and == symbols in c programming?
main() { char p[] = "hello world!"; p = "vector"; printf("%s",p); }
2 Answers Vector, Vector India,
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
What is the Lvalue and Rvalue?
write a c prog for removing duplicate character from an array and sorting remaining elements using a single array
What is sizeof in c?
What is the purpose of void pointer?
main() { static char *s[]={"black","white","yellow","voilet"}; char **ptr[]={s+3,s+2,s+1,s}, ***p; p=ptr; **++p; printf("%s",*--*++p+3); }
what is the output of the following code? main() { int I; I=0x10+010+10; printf("x=%x",I); } give detailed reason
What are macros in C?