Final answer:
The correct statement to declare and store an integer value is 'int count = 5;' where 'int' is a datatype specifying that count is an integer variable.
Step-by-step explanation:
The correct statement that declares and stores an integer value in a variable is: b) int count = 5;
In many programming languages like Java and C++, the syntax int is used to declare a variable of the integer type. The term int signifies that the variable will hold an integer value. The variable name in this case is count, and it is being assigned the integer value 5. Once declared, the variable count can be used throughout the program to represent the value 5 or to store different integer values as needed.