output c++









#include <iostream>
using namespace std;
int main(){
    char firstname[]="ros";
    char lastname []="dul";
    float money=8000;
    cout<<"I will get: \n"; cout<<firstname<<lastname<<money;
   
    return 0;
}

Post a Comment

0 Comments