Sizeof Practice
Determining the Byte Size of the int Data Type
main.c
9
1
2
3
4
5
6
7
8
#include <stdio.h>
int main()
{
printf("Size of int type: %d bytes\n", sizeof(int));
return 0;
}
12345678#include <stdio.h> int main() { printf("Size of int type: %d bytes\n", sizeof(int)); return 0; }
Aufgabe
Swipe to start coding
To find out how many bytes the short
data type occupies, you can employ the sizeof()
function.
Lösung
9
1
2
3
4
5
6
7
8
#include <stdio.h>
int main()
{
printf("Size of short type is %d bytes\n", sizeof(short));
return 0;
}
War alles klar?
Danke für Ihr Feedback!
Abschnitt 2. Kapitel 9
single
9
1
2
3
4
5
6
7
8
#include <stdio.h>
int main()
{
printf("Size of short type is %d bytes\n", ___(___));
return 0;
}
Fragen Sie AI
Fragen Sie AI
Fragen Sie alles oder probieren Sie eine der vorgeschlagenen Fragen, um unser Gespräch zu beginnen