What is the difference between c &c++?
No Answer is Posted For this Question
Be the First to Post Answer
what is a function prototype?
What are header files? What are their uses?
Identify the correct argument for the function call fflush () in ANSI C: A)stdout B)stdin C)stderr D)All the above
What is the difference between %d and %i?
What is pointer and structure in c?
What are the two types of functions in c?
how c source file in converted to exe file
What is a #include preprocessor?
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
What are different types of pointers?
what are the interview question's in the language c
What is #pragma statements?