SIMPLE & COMPLEX DATA TYPES & VARIABLES Flashcards
Lecture 5, 6 & 8
Bit
Holds one of two values: 0 or 1.
Basic & smallest block of computer memory
Bytes
8 bits
Word
Natural unit of memory for a given computer design.
Larger a word is the more information it can store
Integer/arithmetic data type
Char
Int
Short
Long
Floating point data types
Float
Double
Void
Function that returns no value: void(something)
/has no parameter: something(void)
Char
1 byte
Stores single character in single pair of quotation marks
%c
Int
2/4 bytes
Stores whole numbers
%d
Float
Single precision floating pt value
4 byte
6 decimal places
%f
Double
Double precision floating pt value
8 bytes
15 decimal places
%lf
Constants
Fixed values(literals) that the program may not alter during its
execution.
Must be defined before the main function.
Format:
#define CONSTANTNAME value
Long
Stores large integer
8 /4 bytes
Arrays
Ordered sequence of data elements of one type.
Counting begins at zero. Account for null character \0 when determining size.
Format:
type array[size];
Character string
General formats:
For word
char array[size]=”string “;
For single characters
char array[size]={‘a’,’b’,’c’,’\0’};
Function descriptor
%s
No, ‘&’ needed in scanf.
General string characteristics
type array[size];
Word
type array[size]=’string name’;
Single numbers
type array[size]={a,b,c};
Multidimensional array:
type array[size1][size2];
Multidimensional single no. :
type array[size1][size2]={{a,b,c},{d,e,f}};
Variable
Tells the compiler where and how much storage to create for the variable. Specifies a data type and contains a list of one or more variables of that.
Variable names:
should be lowercase for local variables
should be UPPERCASE for constant