Question Set

1. In which stage the following code #include<stdio.h> gets replaced by the contents of the file stdio.h





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.00 pm
    The preprocessor replaces the line #include <stdio.h> with the system header file of that name. More precisely, the entire text of the file 'stdio.h' replaces the #include directive.
Show Similar Question And Answers
QA->In which age the Man passed from the food gathering stage to the food producing stage?....
QA->The extension jpeg in the name of a file indicates that it is a/an file.....
QA->Which one of the following not include the east flowing river in Kerala?....
QA->Which feature is used to inserts the contents of the clipboard as text without any formatting?....
QA->In a certain code SUNDAY is coded as USDNYA. How could CREATION be written in that code?....
MCQ->In which stage the following code #include<stdio.h> gets replaced by the contents of the file stdio.h....
MCQ->A vessel contains 10 litres of milk. First, 2 litre of the content are removed and replaced by 2 litres of water. Subsequently, 4 litres ofvessel's contents is removed and replaced by 4 litres of water. Finally, 6 litres of vessel's contents is removed and replaced by 6 litres ofwater. What is the quantity of milk left in the vessel?....
MCQ->A vessel contains 10 litres of milk.First,2 litres of the content are removed and replaced by 2 litres of water.Subsequently,4 litres of Vessel’s contents is removed and replaced by litres of water.Finally,6 litres of vessel’s contents is removed and replaced by 6 litres water.What is the quantity of milk left in the vessel?....
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->On executing the below program what will be the contents of 'target.txt' file if the source file contains a line "To err is human"? #include<stdio.h> int main() { int i, fss; char ch, source[20] = "source.txt", target[20]="target.txt", t; FILE fs, ft; fs = fopen(source, "r"); ft = fopen(target, "w"); while(1) { ch=getc(fs); if(ch==EOF) break; else { fseek(fs, 4L, SEEK_CUR); fputc(ch, ft); } } return 0; }....
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