Systemnahe Programmierung in C: Seltsame Fehler |
1#include <stdio.h>
2
3struct DATE
4{
5 unsigned day : 5;
6 unsigned month : 4;
7 unsigned year : 11;
8}
9
10/* hier beginnt das Hauptprogramm */
11
12main(void)
13{
14 printf("hello world\n");
15}
|
Letzte Änderung: 11.01.2007 | © Prof. Dr. Uwe Schmidt |