Is null valid for pointers to functions?
No Answer is Posted For this Question
Be the First to Post Answer
Why should I prototype a function?
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
main() { int i=0; while(+(+i--)!=0) i-=i++; printf(i); }
write a C code To reverse a linked list
What is pass by value in c?
Explain how can I open a file so that other programs can update it at the same time?
When was c language developed?
write a program to check whether a number is Peterson or not.
WHAT IS THE DIFFERENCE BETWEEN malloc() and calloc() in c file management?
28 Answers 3D PLM, Code Studio, Deltech, IBM,
What are the disadvantages of c language?
What does the message "warning: macro replacement within a string literal" mean?
Write the syntax and purpose of a switch statement in C.