Differentiate between null and void pointers.
No Answer is Posted For this Question
Be the First to Post Answer
Write a program that takes a 5 digit number and calculates 2 power that number and prints it
Explain that why C is procedural?
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
write a progrmm in c language take user interface generate table using for loop?
What is the difference between struct and typedef struct in c?
Why malloc is faster than calloc?
What is pass by value in c?
What is a segmentation fault?
what is c?
Do you know what is the purpose of 'extern' keyword in a function declaration?
write a program in c to find out the sum of digits of a number.but here is a condition that compiler sums the value from left to right....not right to left..
what's the o/p int main(int n, char *argv[]) { char *s= *++argv; puts(s); exit(0); }