Basic Data Types

  • + 0 comments

    int main() {

    int a;
    long b;
    char c;
    float d;
    double e;
    
    // Getting Input for declared variables
    cin >> a >> b >> c >> d >> e;
    
    //Printing out and ending line for each data
    printf("%d\n%ld\n%c\n%f\n%lf\n", a, b, c, d, e);
    
    
    return 0;
    

    }