SORU - 10 / 15
-
S
Aşağıdaki kodun çıktısı ne olur?
using System; namespace Test { class Program { static void Main(string[] args) { int a = 10, num; num = --a - 2; Console.WriteLine(num); Console.ReadLine(); }}}
-
A
6
-
B
7
-
C
77
-
D
8
-
E
9
-
DOĞRU CEVAP
7
- ÖNCEKİ SORU SONRAKİ SORU