Answer Posted / hr@tgksolutions.com
Memory can be dynamically allocated using functions like malloc(), calloc(), realloc(), and freed using free().
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
For what purpose null pointer used?
what is reason of your company position's in india no. 1.
How can I access an I o board directly?
What does calloc stand for?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
What does c mean?
How can I list all of the predefined identifiers?
Who invented bcpl language?
What is #define in c?
what do you mean by inline function in C?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
What are type modifiers in c?
#include
What is a good data structure to use for storing lines of text?
given post order,in order construct the corresponding binary tree