Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

appdivind c++ stuctures

#include<iostream>
using namespace std;
struct voter
{
    string name,add;
    int id;
};
//declaring function
//structure object is the parameter
void display(struct voter v)
{
    cout<<"
Voter ID: "<<v.id;
    cout<<"
Name: "<<v.name;
    cout<<"
Address: "<<v.add<<"
";
}
int main()
{
    voter v1;
    v1.id=1452145;
    v1.name="Debasis Jana";
    v1.add="Kolkata, West Bengal";
    //calling the function using structure object
    display(v1);
    return 0;
}
Source by appdividend.com #
 
PREVIOUS NEXT
Tagged: #appdivind #stuctures
ADD COMMENT
Topic
Name
4+6 =