Why calloc is better than malloc?
No Answer is Posted For this Question
Be the First to Post Answer
struct tag{ auto int x; static int y; };main() { struct tag s; s.x=4; s.y=5; printf(ā%dā,s.x); }
where does malloc() function get the memory?
void main() { char far *farther,*farthest; printf("%d..%d",sizeof(farther),sizeof(farthest)); }
What are the types of data files?
Explain how do you sort filenames in a directory?
What is Memory leakage ?
How to get string length of given string in c?
What is false about the following A compound statement is a.A set of simple statments b.Demarcated on either side by curly brackets c.Can be used in place of simple statement d.A C function is not a compound statement.
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
write a program in c language to print your bio-data on the screen by using functions.
How can you invoke another program from within a C program?
void main() { int i=5; printf("%d",i+++++i); }