Explain how do you view the path?
No Answer is Posted For this Question
Be the First to Post Answer
EXPLAIN #INCLUDE<STDIO.H> EXPLAIN #INCLUDE<CONIO.H>
What is logical error?
For what purpose null pointer used?
Can a pointer point to null?
differnce between do and do while
What is the general form of #line preprocessor?
main() { FILE *fs; char c[10]; fs = fopen(“source.txt”, ”r”); /* source.txt exists and contains “Vector Institute” */ fseek(fs,0,SEEK_END); fseek(fs,-3L,SEEK_CUR); fgets(c,5,fs); puts(c); }
write a program whose output will be- 1 12 123 1234
What are the different file extensions involved when programming in C?
What is c mainly used for?
Between macros and functions,which is better to use and why?
A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above