What should malloc() do?
No Answer is Posted For this Question
Be the First to Post Answer
Write a C program to fill a rectangle using window scrolling
What are reserved words?
What is an array in c?
Explain how do you print only part of a string?
What is a pointer variable in c language?
which of the following go out of the loopo if expn 2 becoming false a.while(expn 1){...if(expn 2)continue;} b.while(!expn 1){if(expn 2)continue;...} c.do{..if(expn 1)continue;..}while(expn 2); d.while(!expn 2){if(expn 1)continue;..}
What is the newline escape sequence?
Differentiate Source Codes from Object Codes
Why does the call char scanf work?
how to write a prog in c to convert decimal number into binary by using recursen function,
Where are c variables stored in memory?
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā%d\nā,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none