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 :: memcpy in cpp 
Cpp :: hashset in cpp 
Cpp :: invert a binary tree 
Cpp :: split text c++ 
Cpp :: know what the input data is whether integer or not 
Cpp :: c++ pointers 
Cpp :: raspberry pi mount external hard drive 
Cpp :: min heap 
Cpp :: cpp compiler online 
Cpp :: C++ Syntax for Passing Arrays as Function Parameters 
Cpp :: map of maps c++ 
Cpp :: set to vector c++ 
Cpp :: cpp serial print override always in same place 
Cpp :: recuva recovery software for pc with crack 
Cpp :: crud with template c++ 
Cpp :: creating large maps cpp 
Cpp :: how to use printf with <cinttypes c++ 
Cpp :: c++ anti debugging 
Cpp :: reverse the number codechef solution in c++ 
Cpp :: true false operator 
Cpp :: How To Calculate 1+1 in c++ 
Cpp :: argument to number C++ 
Cpp :: codeforces problem 1700A solution in c++ 
Cpp :: sinh nhi phan c++ 
Cpp :: c# unity rendering object 
Cpp :: get shape of eigen matrix 
Cpp :: how are c++ references implemented 
Cpp :: numpy array scalar addition 
Cpp :: pop back innstring 
Cpp :: nodeafternode 
ADD CONTENT
Topic
Content
Source link
Name
4+7 =