I am using the Keil uVision2 embedded C compiler and trying to figure out why i can't use default parameters in my function definitions. Is it just that C doesn't support this? Or is the syntax different from C++?
Printable View
I am using the Keil uVision2 embedded C compiler and trying to figure out why i can't use default parameters in my function definitions. Is it just that C doesn't support this? Or is the syntax different from C++?
It's just that C doesn't support default parameters or overloaded functions.
Not sure about C99 though.
c does not support that