#include <stdio.h>
#include <stdlib.h>
void func(int i);
int main() {
int i;
for(i=0;i<3;i++){
func(i);
}
return 0;
}
void func(int i){
int k;
if(i==0){
k=4;
}
printf("%d\n",k);
Sample Run:
4
4
4
Can someone please explain how come k is always equal to 4. Everytime I call the function I am redefining k and how can the value of k be preserved everytime I call the function
You're not initializing
k
either... so it's probably just re-using the same memory location each time you call the function and it just happens to still be 4 from the first call...Try this
int k = 0;