What is #include stdlib h?


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

Post New Answer

More C Interview Questions

difference of two no's with out using - operator

7 Answers  


Which function in C can be used to append a string to another string?

0 Answers  


What will be the output of x++ + ++x?

20 Answers   MBT, Religare,


#include<stdio.h> int main( ) { Int a=300, b, c; if(a>=400) b=300; c=200; printf(“%d%d ”, b, c); return0; }

1 Answers  


What are the complete rules for header file searching?

0 Answers  






int i=0,j; j=++i + ++i ++i; printf(" %d",j);

2 Answers   ME,


What are the data types present in c?

0 Answers  


What is variables in c?

0 Answers  


what is the purpose of the following code, and is there any problem with the code? void fn(long* p1, long* p2) { register int x = *p1; register int y = *p2; x ^= y; y ^= x; x ^= y; *p1 = x; *p2 = y; }

1 Answers   Google,


What is the purpose of sprintf?

0 Answers  


Tell me can the size of an array be declared at runtime?

0 Answers  


what will be the output of" printf("%d%d",scanf("%d% d",&a&b));"

4 Answers  


Categories