Storage Class

From udemy c for technical interview vid:
Static and Auto:

#include<stdio.h>
void test1(){
    auto int k;
    printf("k=%d\n",k);
    k=20;
    printf("k=%d\n",k);
}

void test(){
    static int var; //auto 0 hoye jabe
    printf("var=%d\n",var);
    var=var+1;
    printf("var=%d\n",var);
}

int main(){

test1();
test();
test();
test();
return 0;
}

 

 

It would be a great help, if you support by sharing :)
Author: zakilive

Leave a Reply

Your email address will not be published. Required fields are marked *