What is printed by the following program?
main()
{ int a, b, c;
b = 4;
c = a+b;
}
Answers
Answered by
0
since you have not specified the value of a there will be a random value in a so it will give a ans which is not specific
specify the value of a for a better result
Similar questions