What is malloc and calloc?


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

Post New Answer

More C Interview Questions

What is the hardest programming language?

0 Answers  


Why do we need volatile in c?

0 Answers  


What is the difference between procedural and declarative language?

0 Answers  


How can I read and write comma-delimited text?

0 Answers  


Explain how can you check to see whether a symbol is defined?

0 Answers  






Consider the following C program. #include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain

2 Answers  


Write a program to find the given number is odd or even without using any loops(if,for,do,while)

4 Answers   CNC, Gokul,


What is a pointer variable in c language?

0 Answers  


Function shall sum members of given one-dimensional array. However, it should sum only members whose number of ones in the binary representation is higher than defined threshold (e.g. if the threshold is 4, number 255 will be counted and 15 will not) - The array length is arbitrary - output the results to the stdout

0 Answers   XYZ,


why should i select you?

21 Answers   Wipro,


i want to make a program in which we use input having four digits(4321) and get output its reciprocal(1234).

1 Answers  


write a c program that if the given number is prime, and their rearrangement(permute) of that number is also prime. Ex: Input is "197" is prime Output: 791,917,179 is also prime. Please any one tell me tha code for that

3 Answers  


Categories