Aşağıdaki C programı çalıştırıldığında bu programın çıktısı ne olur?
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#include <stdio.h> int main() { int x = -1; if (x >> 1 > x) printf("dogru"); else printf("yanlis"); return 0; } |
Sentaks hatası (derleme zamanı hatası)
Tanımsız davranış.
Derleyiciye göre değişir.