Aşağıdaki C programı derlenip çalıştırıldığında ekrana ne yazdırılır?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
#include <stdio.h> #define NECO 100 #define ZERO 0 #define NONO int main() { #if NECO printf("A"); #endif #if ZERO printf("B"); #endif #if YOKO printf("C"); #endif #ifdef NECO printf("D"); #endif #ifdef ZERO printf("E"); #endif #ifdef NONO printf("F"); #endif #ifdef YOKO printf("G"); #endif #ifndef NECO printf("H"); #endif #ifndef ZERO printf("I"); #endif #ifndef NONO printf("J"); #endif #ifndef YOKO printf("K"); #endif #if YOKO > -1 printf("L"); #endif #if TOKO == YOKO printf("M"); #endif } |
Sorunun yanıtı şu seçeneklerden biri de olabilir: Sentaks hatası (derleme zamanı hatası) Tanımsız davranış. Derleyiciye