Search
 
SCRIPT & CODE EXAMPLE
 

CPP

C++ structure (Struct)

#include <iostream>

using namespace std;

struct book{
  string name;
  string author;
  int pages;
  float price;
};

int main(){
    book b1 = {"A tale of two cities", "William Shakespeare", 350, 99.9};
    cout << b1.name << endl;
}
Comment

structs in c++


#include <bits/stdc++.h>
#include <iostream>

#define ll long long

using namespace std;

struct student{
	int roll;
	string name;
	int age;
	
	void studentDetails(){
		cout<<"Name is "<<name<<" Age is "<<age<<" roll no is "<<roll<<endl;
	}
};


int main(){
	
	student sumant;
	sumant.roll = 30;
	sumant.name = "Sumant Tirkey";
	sumant.age = 18;
	
	sumant.studentDetails();
	cout<<endl;

    return 0;
}
Comment

C++ Structures (struct)

struct {             // Structure declaration
  int myNum;         // Member (int variable)
  string myString;   // Member (string variable)
} myStructure;       // Structure variable
Comment

c++ struct

//function having struct as a parameter
#include <iostream>
#include <string>

using namespace std;

struct car{
    string name;
    string color;
    int maxSpeed;
    int model;
};

void fun (car x){
    cout << "Name: " << x.name << endl;
    cout << "Model: " << x.model << endl;
    cout << "Color: " << x.color << endl;
    cout << "Maximum speed: " << x.maxSpeed << endl;
}

int main(){
    car c1 = {"BMW", "Red", 250, 2022};
    car c2 = {"Mercedes", "Black", 220, 2019};
    fun (c1);
    fun (c2);
}
Comment

struct c++

//Struct is a compound data type that contains different variables of different types.
struct Student
{
    char stuName[30];
    int stuRollNo;
    int stuAge;
};
Comment

struct c++

struct Student
{
    string Nom;
    int Surn;
    int Age;
};
Comment

c++ structs

//
//  main.cpp
//  Structures
//

#include <iostream>
#include <string>
using namespace std;

struct variables {
    
    string greeting = "Hello, ";
    string name;
    
    string question = "How old are you? 
";
    int age;
    
};

int main() {
    struct variables introduction;
    
    cout << "What is your name?" << endl;
    cin >> introduction.name;
    cout << introduction.greeting << introduction.name << "!" << endl;
    cout << introduction.question;
    cin >> introduction.age;
    cout << "You are " << introduction.age << " years old." << endl;
    
    return 0;
}

/*
 * example run:
 * What is your name?
 * Alex
 * Hello, Alex!
 * How old are you?
 * 30
 * You are 30 years old.
 */
Comment

c++ struct

struct Block {
    vk::DeviceMemory memory;
    vk::DeviceSize offset;
    vk::DeviceSize size;
    bool free;
    void *ptr = nullptr; // Useless if it is a GPU allocation
 
    bool operator==(Block const &block);
};
bool Block::operator==(Block const &block) {
    if(memory == block.memory &&
       offset == block.offset &&
       size == block.size &&
       free == block.free &&
       ptr == block.ptr)
        return true;
    return false;
}
Comment

PREVIOUS NEXT
Code Example
Cpp :: max in c++ 
Cpp :: arduino xor checksum 
Cpp :: c++ vs g++ 
Cpp :: how to play sounds in c++ 
Cpp :: Find minimum maximum element CPP 
Cpp :: remove element from vector 
Cpp :: string length in c++ 
Cpp :: how to compare two char* in c++ 
Cpp :: find element in vector 
Cpp :: tree to array c++ 
Cpp :: opengl draw semi circle c++ 
Cpp :: cpp string find all occurence 
Cpp :: c++ random generator 
Cpp :: reversing a string in c++ 
Cpp :: insert in vector 
Cpp :: c++ preprocessor operations 
Cpp :: count number of prime numbers in a given range in c 
Cpp :: c++ region 
Cpp :: access last element of set c++ 
Cpp :: char to int in c++ 
Cpp :: variables in c++ 
Cpp :: print in c ++ 
Cpp :: c++ std string to float 
Cpp :: c++ string_t to string 
Cpp :: c++ count vector elements 
Cpp :: rethrow exception c++ 
Cpp :: add input in c++ 
Cpp :: c++ split string 
Cpp :: casting to a double in c++ 
Cpp :: compare values within within a vector c++ 
ADD CONTENT
Topic
Content
Source link
Name
3+5 =