Displaying ./code/sternflCode/varType.txtkeywords 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.
|