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
What language is windows 1.0 written?
What are structural members?
How do you determine the length of a string value that was stored in a variable?
What is a static variable in c?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)
Create a simple code fragment that will swap the values of two variables num1 and num2.
Write a program in c to replace any vowel in a string with z?
What is console in c language?
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
What does nil mean in c?
What are pointers? What are stacks and queues?
Calculate 1*2*3*____*n using recursive function??
Explain what are header files and explain what are its uses in c programming?
Describe newline escape sequence with a sample program?