Computer Science, asked by advocatedkpathak56, 9 months ago

write a program to create variable of different type integer and floating point character string and integer then the value of variable with appropriat​

Answers

Answered by Anonymous
2

Answer:

Normally, a verbal communication takes place in real time. Written communication, by contrast, can be constructed over a longer period of time. Written communication is often asynchronous (occurring at different times). That is, the Sender can write a Message that the Receiver can read at any time, unlike a conversation that is carried on in real time. A written communication can also be read

Answered by manoj2425
0

Answer:

Explan#include <iostream>

using namespace std;

int main()

{

cout << sizeof(char) << endl;//1

cout << sizeof(int) <<  endl;//4

cout << sizeof(float) << endl;//4

cout << sizeof(double) << endl;//8

return 0;

}

ation:

Similar questions