Computer Science, asked by chiragkaushal1, 2 months ago

optimization technique question

Attachments:

Answers

Answered by Anonymous
1

Answer:

#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