Computer Science, asked by oinamroshni79, 6 months ago

write Ac program to perform a addition of two numbers without using + operator​

Answers

Answered by Anonymous
3

#include <stdio.h>

int add(int x, int y)

{

return printf("%*c%*c", x, ' ', y, ' ');

}

// Driver code

int main()

{

printf("Sum = %d", add(3, 4));

return 0;

}

Similar questions