Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
/*Message Loop*/
while (GetMessage (&messages, NULL, 0, 0) > 0)
{
/* Translate virtual-key messages into character messages */
TranslateMessage(&messages);
/* Send message to WindowProcedure */
DispatchMessage(&messages);
}
}
... dann komm ich eben in 3 Jahren wider
(@algeheo : es funzt trotzdem nich)
int i; //globales i;
void test_func(void)
{
int i; //lokales i
i = 2; //lokal geht vor global -> lokales i = 2;
printf("i ist %d\n",i); // gibt 2 aus (da lokal vor global)
}
void main(void)
{
int j,k; //weiß nicht was das hier zu suchen hat
i = 1; //kein lokales i vorhanden, also globales i = 1
printf("i ist %d\n",i); //globales i ausgeben (1)
test_func(); //siehe test_func (gibt 2 aus)
printf("i ist %d\n",i); //in test_func wurde nur das lokale i der test_func geändert -> globales i bleibt 1 -> Ausgabe: 1
}