How can you dynamically allocate memory in C?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
Memory can be dynamically allocated using functions like malloc(), calloc(), realloc(), and freed using free().
| Is This Answer Correct ? | 0 Yes | 0 No |
Memory can be dynamically allocated using functions like malloc(), calloc(), realloc(), and freed using free().
| Is This Answer Correct ? | 0 Yes | 0 No |
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
how can i make a program with this kind of output.. Enter a number: 5 0 01 012 0123 01234 012345 01234 0123 012 01 0
What is hashing in c?
What are dynamically linked and statically linked libraries?
#include<stdio.h> void main() { int =1; printf("%d%d%d",a++,++a,++a); }
Eight queens puzzle
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
A program to write a number of letters and numbers, such as counting and display
1,4,8,13,21,30,36,45,54,63,73,?,?.
10 Answers AMB, Franklin Templeton,
What are the types of variables in c?
Is it fine to write void main () or main () in c?
What is function definition in c?