Final answer:
The correct statement to store an integer value in a variable is 'count = 5;', as it assigns the integer value 5 to the variable count.
Step-by-step explanation:
The statement that stores an integer value in a variable is a) count = 5;
Option b) count = 5.0; indicates a floating-point assignment, not an integer. Option c) count == 5; is a comparison, not an assignment. Option d) count != 5; is a 'not equal' comparison. Thus, the correct answer is option a), which assigns the integer value 5 to the variable count.