What should malloc() do?
No Answer is Posted For this Question
Be the First to Post Answer
main() { float a=8.8; double b=8.8; if(a==b) printf("Equal"); else printf("not equal"); getch(); } what is the output? with reason
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
what is the difference between #include<> and #include”…”?
What is exit() function?
Can U write a C-program to print the size of a data type without using the sizeof() operator? Explain how it works inside ?
Write a program which has the following seven functions. The functions should be: • main() this calls the other 6 functions • fget_long() a function which returns a long data type from a file • fget_short() a function which returns a short integer variable from a file • fget_float() a function which returns a floating point variable from a file • fprt_long() a function which prints its single, long argument into a file • fprt_short() a function which prints its single, short argument into a file • fprt_float() a function which prints its single, floating point argument into a file. You should use fscanf() to get the values of the variables from the input (the file) and fprintf() to print the values to the other file. Pay attention to using the correct format for each of the data types.
What are local variables c?
how to do in place reversal of a linked list(singly or doubly)?
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
What does 2n 4c mean?
What is the use of the sizeof operator?
Do you know the difference between exit() and _exit() function in c?