Suppose x and y are int variables and ch is a char variable. Consider the following input: 5 28 36 What value (if any) is assigned to x, y, and ch after each of the following

Respuesta :

Answer:

x is assigned "5", y is assigned "28", and ch is assigned "$"

Explanation:

#include <stdio.h>

#include <iostream>

using namespace std;

int main()

{

   int x,y;

   char ch;

   x = 5;

   y = 28;

   ch = 36;

   cout<<x<<endl<<y<<endl;

   cout<<ch;

   return 0;

}

Ver imagen dayanandghelaro