Warning: implode(): Invalid arguments passed in /www/wwwroot/jobquiz.info/mdiscuss.php on line 336
stderr, stdin, stdout are FILE pointers ?->(Show Answer!)
Question Set

1. stderr, stdin, stdout are FILE pointers



Ask Your Doubts Here

Type in
(Press Ctrl+g to toggle between English and the chosen language)

Comments

  • By: guest on 01 Jun 2017 06.02 pm
    Yes, these will be declared like The corresponding stdio.h variable is FILE* stdin; The corresponding stdio.h variable is FILE* stdout; The corresponding stdio.h variable is FILE* stderr;
Show Similar Question And Answers
QA->The extension jpeg in the name of a file indicates that it is a/an file.....
QA->ഒരു file ന്റെ size നെ കുറയ്ക്കുവാൻ ഉപയോഗിക്കുന്ന രീതി ? ....
QA->FTP (File:Transfer Protocol) എന്നാൽ എന്ത് ? ....
QA->Who took initiative to file a counter memorial in favour of Brahmins, against the Malayali Memorial?....
QA->How many days-time is given for the candidates to file their nominations from the date of notification of the election?....
MCQ->stderr, stdin, stdout are FILE pointers....
MCQ->What will be the output of the program? #include<stdio.h> int main() { int i; char c; for(i=1; i<=5; i++) { scanf("%c", &c); / given input is 'b' / ungetc(c, stdout); printf("%c", c); ungetc(c, stdin); } return 0; }....
MCQ->Point out the error in the program? #include<stdio.h> / Assume there is a file called 'file.c' in c:\tc directory. / int main() { FILE fp; fp=fopen("c:\tc\file.c", "r"); if(!fp) printf("Unable to open file."); fclose(fp); return 0; }....
MCQ->What will be the content of 'file.c' after executing the following program? #include<stdio.h> int main() { FILE fp1, fp2; fp1=fopen("file.c", "w"); fp2=fopen("file.c", "w"); fputc('A', fp1); fputc('B', fp2); fclose(fp1); fclose(fp2); return 0; }....
MCQ->Read the following statements about files in Pascal A file is a data structure which consists of a sequence of components of the same type.The number of components in a file is variable.The components in a file can be accessed only sequentially starting from the beginning of the file. Which of the above are correct?....
Terms And Service:We do not guarantee the accuracy of available data ..We Provide Information On Public Data.. Please consult an expert before using this data for commercial or personal use | Powered By:Omega Web Solutions
© 2002-2017 Omega Education PVT LTD...Privacy | Terms And Conditions
Question ANSWER With Solution