Declaring variables problems

Hello, I have some questions about declaring variables, its giving some problems

a character variable c initialized to “y”

an integer variable x uninitialized

i don't know what "initialized" means on c++ and google is not helping me either

thanks for your help :)
a character variable c initialized to “y”
may look like

char c='y'

an integer variable x uninitialized


will be int x;//not giving x any value
Topic archived. No new replies allowed.