diff --git a/C/program-41/program.c b/C/program-41/program.c new file mode 100644 index 00000000..2cd3cd17 --- /dev/null +++ b/C/program-41/program.c @@ -0,0 +1,14 @@ +/*To find sum of two numbers without using any operator*/ +#include + +int add(int x, int y) +{ + return printf("%*c%*c", x, ' ', y, ' '); +} + +// Driver code +int main() +{ + printf("Sum = %d", add(3, 4)); + return 0; +}