mirror of
https://github.com/RevCurtisP/C02.git
synced 2024-11-17 15:06:29 +00:00
51 lines
477 B
Plaintext
51 lines
477 B
Plaintext
|
Standard C Keywords
|
||
|
break
|
||
|
case
|
||
|
char
|
||
|
const
|
||
|
continue
|
||
|
default
|
||
|
do
|
||
|
else
|
||
|
for
|
||
|
goto
|
||
|
if
|
||
|
return
|
||
|
switch
|
||
|
void
|
||
|
while
|
||
|
|
||
|
C Preprocessor directives
|
||
|
#define
|
||
|
#error
|
||
|
#include
|
||
|
#pragma
|
||
|
|
||
|
Questionable C Keywords
|
||
|
enum
|
||
|
extern
|
||
|
register
|
||
|
signed
|
||
|
sizeof
|
||
|
struct
|
||
|
typedef
|
||
|
union
|
||
|
unsigned
|
||
|
volatile
|
||
|
|
||
|
Unused Standard C Keywords
|
||
|
auto n/a
|
||
|
double n/a
|
||
|
float n/a
|
||
|
int n/a
|
||
|
long n/a
|
||
|
short n/a
|
||
|
static n/a
|
||
|
|
||
|
Unused Preprocessor Directives
|
||
|
#if
|
||
|
#ifdef
|
||
|
#ifndef
|
||
|
#undef
|
||
|
# line
|