შენიშვნა
ამ გვერდზე წვდომა მოითხოვს ავტორიზაციას. შეგიძლიათ სცადოთ შესვლა ან შეცვალოთ დირექტორიები.
ამ გვერდზე წვდომა მოითხოვს ავტორიზაციას. შეგიძლიათ სცადოთ დირექტორიების შეცვლა.
formal parameter 'number' has different type when promoted
Remarks
The parameter type is not compatible, through default promotions, with the type in a previous declaration.
This is an error in ANSI C (/Za) and a warning under Microsoft extensions (/Ze).
Example
// C4032.c
// compile with: /W4
void func();
void func(char); // C4032, char promotes to int
int main()
{
}