Question Set

1. In which header file is the NULL macro defined?





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
    The macro "NULL" is defined in locale.h, stddef.h, stdio.h, stdlib.h, string.h, time.h, and wchar.h.
Show Similar Question And Answers
QA->The extension jpeg in the name of a file indicates that it is a/an file.....
QA->Null and void....
QA->Which are macro-nutrients provided by inorganic fertilizers?....
QA->Which of the following is not a macro economics....
QA->ജനറൽ തിയറി എന്നറിയപ്പെടുന്ന Macro Economics ന്‍റെ പിതാവ്?....
MCQ->In which header file is the NULL macro defined?....
MCQ->Consider the following statements An assembler is a program having assembly language program as input and machine language program as output.A macro assembler is an assembler with additional macro facilities.A cross assembler for a μP X is an assembler which executes on source microcomputer with a different CPU than X bit generates code for X.Assemblers generally do not provide macro facilities. Of the above statement....
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 output of the program ? #include<stdio.h> int main() { FILE fp; unsigned char ch; / file 'abc.c' contains "This is IndiaBIX " / fp=fopen("abc.c", "r"); if(fp == NULL) { printf("Unable to open file"); exit(1); } while((ch=getc(fp)) != EOF) printf("%c", ch); fclose(fp); printf("\n", ch); 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