#include using namespace std; int playchar(char c1); int main() { char ch1 = 'A'; int n2, n3 ; n2 = ch1 + 2; cout <<"\n char sent out " << ch1 ; printf("\n sent out A converted to : %c", playchar(ch1)); cout <<"\n -----------"; printf("\n integer sent out %d", n2); n3 = playchar(n2); printf("\n char coverted %c from %d", n3,n3); return 0; } int playchar(char c1) { cout <<"\n value received : " << c1; int n2 = c1 + 2; cout <<"\n value returned : " << n2; return n2; }