console I/O functions means
a) the I/O operations done on disk
b) the I/O operations done in all parts
c) the input given through keyboard is displayed VDU screen
d) none of the above
what is disadvantage of pointer in C
What is the most efficient way to count the number of bits which are set in a value?
difference between function & structure
What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the next lower integer B)it returns the value rounded up to the next higher integer C)the Next Higher Value D)the next lower value
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
main() { int i=1; while (i<=5) { printf("%d",i); if (i>2) goto here; i++; } } fun() { here: printf("PP"); }
What is function in c with example?
What is quick sort in c?
What is the role of this pointer?
What is c language and why we use it?
Why is c platform dependent?
What is difference between Structure and Unions?