C++ Programming |
- Representations and sets of values of the various types of integers
- The semantics of the arguments to main
- How to identify a diagnostic
- Interaction With Tc
- Holding Your Program output
- Tips to Write your First C++ Program
Representations and sets of values of the various types of integers Posted: 24 Apr 2013 09:24 AM PDT ------------------------------------------------------------------------ Type Minimum value Maximum value ------------------------------------------------------------------------ signed char -128 127 unsigned char 0 255 signed short |
The semantics of the arguments to main Posted: 24 Apr 2013 09:18 AM PDT The value of argv[0] is a pointer to a null byte when the program is run on DOS versions prior to version 3.0. For DOS version 3.0 or later, argv[0] points to the program name. The remaining argv strings point to each component of the DOS command-line arguments. Whitespace separating arguments is removed, and each sequence of contiguous non white space characters is |
Posted: 24 Apr 2013 09:13 AM PDT When the compiler runs with the correct combination of options, any message it issues beginning with the words Fatal, Error, or Warning are diagnostics in the sense that ANSI specifies. The options needed to insure this interpretation are in the following table. The options are listed as hot keys you use in the IDE. For example, the first option corresponds to Options|Compiler |
Posted: 24 Apr 2013 09:05 AM PDT Hi , this video explain some basic interaction you make with your Tc while make the program |
Posted: 24 Apr 2013 08:32 AM PDT This is a short Video for what can you do to make your program hold the output and show it |
Tips to Write your First C++ Program Posted: 24 Apr 2013 08:16 AM PDT Hi , created a PPT for all the begner to have some basic things to keep in mind while writing their first program in C++ |
You are subscribed to email updates from C++ Programming To stop receiving these emails, you may unsubscribe now. | Email delivery powered by Google |
Google Inc., 20 West Kinzie, Chicago IL USA 60610 |
Post a Comment