I'm new to C, this is My code. Maybe this is too easy for someone else.
#include <stdio.h> int main() //Assign value to identifiers { int a,b,c,d=6; printf("a:%d\n",a); printf("b:%d\n",b); printf("c:%d\n",c); printf("d:%d",d); return 0; } Why is a=16, b=0, and c=12522400?
a:16 b:0 c:12522400 d:6
int a=6, b=6, c=6, d=6;instead.