Horje
c++ vector structure Code Example
c++ vector structure
#include <vector>

typedef struct test1 {
  int a;
  char b;
} TOTO;

std::vector<TOTO> _v;

_v.push_back((TOTO){10, 'a'});
_v[0].a = 101;




Cpp

Related
sum of n natural numbers in c Code Example sum of n natural numbers in c Code Example
c++ write string Code Example c++ write string Code Example
size of set c++ Code Example size of set c++ Code Example
cpp vector structure Code Example cpp vector structure Code Example
intlen in c++ Code Example intlen in c++ Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
13