What is malloc() function?
No Answer is Posted For this Question
Be the First to Post Answer
How can I implement opaque (abstract) data types in C? What's the difference between these two declarations? struct x1 { ... }; typedef struct { ... } x2;
Explain what is a program flowchart and explain how does it help in writing a program?
study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above
pick out the odd one out of the following a.malloc() b.calloc() c.free() d.realloc()
what is the advantage of software development
What is the heap?
Differentiate b/w Modify and Update commands giving example.
Why c is a procedural language?
which is conditional construct a) if statement b) switch statement c) while/for d) goto
The __________ attribute is used to announce variables based on definitions of columns in a table?
What is the relation between # and include<stdio.h>
Which sorting algorithm is the best?