logoISU  

CS256 - Principles of Structured Design

Fall 2021

Displaying ./code/sternflCode/varType.txt

keywords types of data
  int
  char
  long

=============
  float
  double

  use: int x;
       float distance, length;
       char c = 'A';  //code for the letter A is stored into c
       int w=10;
  /* this can go on for many lines, many pages

   the asterisk and slash end the multiline comment
  */
 
the types are used to set up variables.