C is statically-typed and weakly-typed language.
C is statically-typed in contrast with PHP's dynamically-typed, PHP's string can later become integer, or vice versa, while C doesn't.
C can be considered weakly-typed language, in contrast with Pascal very strong typing system. C allows for implicit conversions, no casting needed, between char and integer, between long and integer, assign integer(e.g. absolute memory address, hello 0xA000, 0xB800 : )) to pointers, can mix pointers of different types, you can make a integer pointer point to a float pointer, char pointer point to a struct pointer without needing for explicit casting, while Pascal doesn't allow this sort of implicit conversions and casting. C allows you to freely assign variables to each other even of incompatible types, without the compiler balking at you, hence for the invention of Hungarian notations, so you can prevent these accidents.
C++ is statically-typed and strongly-typed. Without explicitly casting, C++ will not allow you to just assign pointers of different types, you cannot make a char pointer points to struct pointer, you cannot assign an integer(absolute memory address) to a pointer, you must cast things, you must explicitly state your intent. But C++ is not as "strongly"-typed as C#, C++ doesn't possessed C# type safety, C# will not allow you to downcast variables, i.e. you cannot assign long to integer, integer to short, without you explicitly casting them. And C# enum type is stronger than C++
contrast:
Evil vs Good
Smooth vs Rough
Statically-typed vs Dynamically-typed
Strongly-typed vs Weakly-typed