This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: g++ member function .at() for arrays


Further to my previous message, the start of my program is:

#include <stdio.h>
#include <iostream>

#include <vector>
#include <deque>
#include <array>

using std::vector;
using std::deque;
using std::cout;
using std::endl;

int main(int argc, char **argv)
{
   int aa1[4] = {0, 1, 2, 3};
   vector<int> vv1{50, 51, 52, 53};
   deque<int> dd1{100, 101, 102, 103};
	

  - Robin


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]