2019-04-30 20:09:07 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2019-05-01 22:06:48 +02:00
|
|
|
void greet(const char* msg, float num, int sint, char c)
|
2019-04-30 20:09:07 +02:00
|
|
|
{
|
2019-05-01 22:06:48 +02:00
|
|
|
printf("%s: '%f' '%d' '%c'\n", msg, num, sint, c);
|
2019-04-30 20:09:07 +02:00
|
|
|
}
|