Answer:
In C++ we can assign a character to the variable by using the below statement.
ch='X';
Explanation:
The complete program for assigning a character to the variable is given as
#include<iostream>
#include <conio.h>
using namespace std;
main()
{
char ch;
ch= 'X';
cout<<"output of variable Ch ="<<ch;
getch();
}
In above program Char is the data type used for character type variables. ch= 'X' stores X in ch. Then output will shown through cout.
Explanation:
A computer keyboard is an input device that allows a person to enter letters, numbers, and other symbols (these are called characters in a keyboard) into a computer. It is one of the most used input devices for computers. Using a keyboard to enter lots of data is called typing
For SMB: \\server\path\to\share
For CIFS: //server/path/to/share