C Tutorial/Preprocessor/Preprocessor — различия между версиями
Admin (обсуждение | вклад) м (1 версия: Импорт контента...) |
(нет различий)
|
Текущая версия на 10:31, 25 мая 2010
Preprocessing
You can use preprocessor to define constant and substitution.
#include <stdio.h>
#define const 5
main(){
int i= 4;
i = i * const;
printf("%d \n", i);
}
20