Answers for "c unused parameter"

C
0

c unused parameter

void some_function(char c, int a __attribute__((unused))) {
  __attribute__((unused)) float f;
  putchar(c);
}
Posted by: Guest on January-10-2021

Code answers related to "C"

Browse Popular Code Answers by Language