T
Q. Which function is used to seek the file pointer position in C?
In C programming language, the fseek() function is used to seek the file pointer position. Syntax: int fseek(FILE *file_pointer, long int offset, int whence); Where, file_pointer− This is the pointer to a FILE object that identifies the stream. offset − This is the number of bytes to offset from whence. whence − This is the position from where offset is added, the value of this parameter may SEEK_SET, SEEK_CUR, or SEEK_END.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. The process in which a function calls itself directly or indirectly is called?
Q. A recursive function without If and Else conditions will always lead to?
Q. A recursive function can be replaced with __ in c language.
Q. The function tolower() defined in the C library works for ___?
Q. What is the output of the program.?
Q. How many functions are required to create a recursive functionality?
Q. What is the size of the int data type (in bytes) in C?
Q. What will be the final value of x in the following C code?
Q. In C, what is the meaning of following function prototype with empty parameter list
Discusssion
Login to discuss.