Is there any demerits of using pointer?
No Answer is Posted For this Question
Be the First to Post Answer
f(*p) { p=(char *)malloc(6); p="hello"; return; } main() { char *p="bye"; f(p); printf("%s",p); } what is the o/p?
Which is better malloc or calloc?
Why can't we initialise member variable of a strucutre
What are the advantages of using new operator as compared to the function malloc ()?
C program to find frequency of each character in a text file?
What are loops in c?
what are the difference between ANSI C and Let Us c and Turbo C
provide an example of the Group by clause, when would you use this clause
Explain how do you generate random numbers in c?
writ a program to compare using strcmp VIVA and viva with its output.
What is the use of static variable in c?
Why is c fast?