“C Globale Variable” Code-Antworten

So deklarieren Sie die globale Variable in C.

You just need to declare a variable out of the function main in order to make it global.
Inquisitive Iguana

C Globale Variable

#include <stdio.h>
void display();

int n = 5;  // global variable

int main()
{
    ++n;     
    display();
    return 0;
}

void display()
{
    ++n;   
    printf("n = %d", n);
}
SAMER SAEID

Ähnliche Antworten wie “C Globale Variable”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen