What's the difference between constant char *p and char * constant p?
No Answer is Posted For this Question
Be the First to Post Answer
Is null always defined as 0(zero)?
what is d pitfalls of registers variables
Why is it that not all header files are declared in every C program?
C program code int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
How pointer is benefit for design a data structure algorithm?
How can you be sure that a program follows the ANSI C standard?
print out of string in this format; 1. "rajesh" 2. \n 3. %d
What is #define used for in c?
program to find the magic square
How do I swap bytes?
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
What is the hardest programming language?