What is header file in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is huge pointer in c?
True or false: If you continuously increment a variable, it will become negative? 1) True 2) False 3) It depends on the variable type
Explain the binary height balanced tree?
12345 1234 123 12 1
What is size of union in c?
What are the features of the c language?
character array A[12] can hold
Tell me what are bitwise shift operators?
Why the use of alloca() is discouraged?
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
String concatenation
What is the difference between functions getch() and getche()?