Font size
WorksheetsPR EidP Quiz Seminar 3
Total questions: 6
Worksheet time: 4mins
Was ist der C-Datentyp von 3.14?
float
double
int
long double
Was ist der C-Datentyp von 0.5f?
float
double
int
long double
Was ist der Dezimalwert und (Standard) C-Datentyp von 0xfee?
4077 und long long
4078 und int
4078 und double
4078 und short
4077 und int
Um welchen C Datentyp handelt es sich und was ist das Ergebnis (Asci-Wert von 'C' ist 67)?
14.0f + 5 + 'C' == 10
int und 0
double und 1.0
float und 20.0
float und 0.0
int und 20
Was wird hier ausgegeben:
double wert = 0.012e3;
printf("%o", (int) wert);
(a)
Welche der folgenden Klammerausdrücke ist äquivalent zu dem gegebenen Ausdruck, wenn die Operatorpräzedenzen berücksichtigt werden:
(int) 1.0 << 0 && 1 != 0 & 3
(int) 1.0 << (0 && (1 != 0) & 3)
(int) 1.0 << 0 && (1 != (0 & 3))
((int) 1.0 << 0) && (1 != 0) & 3
(int) 1.0 << (0 && 1) != (0 & 3)
