write Ac program to perform a addition of two numbers without using + operator
Answers
Answered by
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
Math,
2 months ago
Environmental Sciences,
2 months ago
Biology,
2 months ago
Computer Science,
6 months ago
Science,
11 months ago
Math,
11 months ago