What are the usage of pointer in c?
No Answer is Posted For this Question
Be the First to Post Answer
write a C program: To search a file any word which starts with ?a?. If the word following this ?a? starts with a vowel.Then replace this ?a? with ?a? with ?an?. redirect with the output onto an output file.The source file and destination file are specified by the user int the command line.
what is constant pointer?
who is the father of c
How to implement variable argument functions ?
15.what is the disadvantage of using macros? 16.what is the self-referential structure? 17.can a union be self-referenced? 18.What is a pointer? 19.What is the Lvalue and Rvalue? 20.what is the difference between these initializations? 21.Char a[]=”string”; 22.Char *p=”literal”; 23.Does *p++ increment p, or what it points to?
write a c code "if you give a any decimal number then print that number in english alphabet"? ex: i/p: 552 o/p: five hundred fifty two ...
print pattern 1 1 33 33 555 555 77777777 555 555 33 33 1 1
to find the program of matrix multiplication using arrays
How do you define CONSTANT in C?
Why clrscr is used after variable declaration?
What is the difference between ‘g’ and “g” in C?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }