What should malloc() do?


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

Post New Answer

More C Interview Questions

What is maximum size of array in c?

0 Answers  


1)which of following operator can't be overloaded. a)== b)++ c)?! d)<=

16 Answers   CybOrg, Siemens,


What is a pointer?

1 Answers   ADP, IFFCO,


#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }

0 Answers   Wilco,


Write a pro-gramme to determine whether the number is even or odd?

1 Answers  






what is the flow of execution in cprogram? ex:printf();,scanf();

2 Answers  


What is a built-in function in C?

1 Answers  


Function calling procedures? and their differences? Why should one go for Call by Reference?

0 Answers   ADP,


Describe how arrays can be passed to a user defined function

0 Answers  


#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300

4 Answers   Tieto,


12344321 123 321 12 21 1 1 how i print this program??

5 Answers   DSR Management, Winit,


cavium networks written test pattern ..

0 Answers   Cavium Networks,


Categories