Posts

Showing posts from October, 2018

WRITE YOUR OWN PREHEADER FLIE

Image
          WRITE YOUR OWN PREHEADER FLIE  what is preheader file also called own library  where you call technically preprocessor  it will always declaring top of program advantages 1.Fast program executed and you rewrite program again and again  2.It will remove complexity of problem  NOTE: before knowing the how to write your own headerflie you must about functions types with knowing that concept you cannot understand    This is header file must save with .h formate This main program // C program to illustrate the concept of Line splicing. int main() {  // Line Splicing\  printf("welcome WORLD\a");  return (0); } escape  operators  \a    Alarm or Beep   \b    Backspace \f    Form Feed \n    New Line \r    Carriage Return \t    Tab (Ho...

TYPES OF DATA TYPES AND DEACLARING IN A SINGLE LINE FORMATE

Image
HOW TO PRINT ALL DATA TYPES IN SIGLE LINE FORMATE What are the keywords used in data types?      keyword nothing but reversed specified function where are so many keyword used in c language  but now your using " printf();" ,"scanf();" and getchar(); printf(); >>>printf means print data what ever present in double contusion  problems with printf   1.when it will read null character it will terminated  problems with scanf 1.one most problem is buffering problem  ………...how to slove  buffer problem just give space before declaring type data declaration give space then it will automatically clear problem          example:                                   scanf( "space %data type declaration ",addres of variable);                     ...