Assume that the following code is written in a main function…

Assume that the following code is written in a main function and all necessary header files are included. What is the output of following code snippet? int integer1 = 5, integer2 = 4, integer3 = 2;int answer= 0; integer1 + integer2*integer3 = answer;printf(“%d”, answer);