What is the function of this pointer?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program in c to replace any vowel in a string with z?
How can a process change an environment variable in its caller?
What is the purpose of 'register' keyword in c language?
why we need function pointers?
Explain the advantages of using macro in c language?
Can we replace the struct function in tree syntax with a union?
How the C program can be compiled?
Explain what is the concatenation operator?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
What is the process of writing the null pointer?
When c language was developed?
#define d 10+10 main() { printf("%d",d*d); }