Why calloc is better than malloc?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Write a Program to print this triangle: * ** * **** * ****** * ******** * ********** use two nested loops.

12 Answers   MIT, TCS,


How to write a code for random pick from 1-1000 numbers? The output should contain the 10 numbers from the range 1-1000 which should pick randomly, ie ,for each time we run the code we should get different outputs.

12 Answers   NetApp,


main() { int a=0; if(a=0) printf("Ramco Systems\n"); printf("India\n"); } output?

7 Answers   Ramco,


What is variable in c example?

0 Answers  


main() { FILE *fs; char c[10]; fs = fopen(“source.txt”, ”r”); /* source.txt exists and contains “Vector Institute” */ fseek(fs,0,SEEK_END); fseek(fs,-3L,SEEK_CUR); fgets(c,5,fs); puts(c); }

1 Answers   Vector,


What is non linear data structure in c?

0 Answers  


Is there anything like an ifdef for typedefs?

0 Answers  


Explain what are multibyte characters?

0 Answers  


Implement bit Array in C.

0 Answers   GrapeCity,


what are the general concepts of c and c++

2 Answers  


What is nested structure with example?

0 Answers  


What is pass by value in c?

0 Answers  


Categories