Skip to content

Instantly share code, notes, and snippets.

@dpoulopoulos
Created September 21, 2021 16:58
Show Gist options
  • Save dpoulopoulos/8f2b45007f51df64fcfc8106f8bc72a2 to your computer and use it in GitHub Desktop.
Save dpoulopoulos/8f2b45007f51df64fcfc8106f8bc72a2 to your computer and use it in GitHub Desktop.
#include <stdio.h>
float cadd(int x, float y) {
float res = x + y;
printf("In cadd: int %d float %.1f returning %.1f\n", x, y, res);
return res;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment