# The Values in C/C++

## Common Values

1. You can't declare an array without specify its size. but if you know how to use 'malloc' function, that would be different.

## C

1. Use `strcmp()` in `string.h` to compare two char array. Otherwise you'll find `char a[] = "1"` and `char b[] = "1"` never equal.

