Ticker

6/recent/ticker-posts

Global Variable Local Variable

 Global Variable Local Variable


#include <stdio.h>

int x=10;       //Global Variable

int main() {

    int y=20;   //Local Variable


    printf("\n x=%d y=%d",x, y);


    return 0;

}


output:-

x=10 y=20

కామెంట్‌ను పోస్ట్ చేయండి

0 కామెంట్‌లు