C Assignment - Assignment Operator in C
Learn C - C tutorial - assignments in c - C examples - C programs
C Assignment - Assignment Operator in C
- Once you've declared a variable you can use it - attempts to use a variable that has not been defined will cause a compiler error.
- You can store a value in a variable using name = value;
- For example:
- k=100;