Variables in C programming Q - 8

Last Updated :
Discuss
Comments

What will be the value of a in the end?

C
int a = 5;
int b = a;
b = 10;


5

10

0

Garbage Value

Share your thoughts in the comments