1int d_init()2{3 return 456;4}5 6int d_global = d_init();7 8int9d_function ()10{ // Find this line number within d_dunction().11 return 12345;12}13