C++ (constracture) Get link Facebook X Pinterest Email Other Apps - August 25, 2021 Get link Facebook X Pinterest Email Other Apps
Data Type in C++. Get link Facebook X Pinterest Email Other Apps - August 21, 2021 C++All data type in C++ are here..#include<iostream>using namespace std;int main(){ cout << "Size of char : " << sizeof(char) << " byte" << endl; cout << "Size of int : " << sizeof(int) << " bytes" << endl; cout << "Size of short int : " << sizeof(short int) << " bytes" << endl; cout << "Size of long int : " << sizeof(long int) << " bytes" << endl; cout << "Size of signed long int : " << sizeof(signed long int) << " bytes" << endl; cout << "Size of unsigned long int : " << sizeof(unsigned long int) << " bytes" << endl; cout << "Size of float : " << sizeof(float) << " bytes" <<endl; cout << "Size of double : " << sizeof(double) << " bytes" << endl; cout << "Size of wchar_t : " << sizeof(wchar_t) << " bytes" <<endl; return 0;} Follow on Instragram Get link Facebook X Pinterest Email Other Apps Comments
java - August 18, 2021 1 .Hello world program .. public class Main { public static void main(String[] args) { System.out.println("Hello , World!"); } } Read more
Comments
Post a Comment