“? в CPP” Ответ

инициализировать массив в C

int nums[100] = {0}; // initiallize all values to 0

int nums[5] = {1,2,3,4,5};

// type name[size] = {values};
sachin_duhan

? в CPP

e = ((a < d) ? (a++) : (a = d))
  //advance if else condition
Habib

# в c

You can use '#' sign to get exact name of an argument passed to a macro:
#define what_is(x) cerr << #x << " is " << x << endl;
int variable = 376;
what_is(variable);
// prints "variable is 376"
BreadCode

Ответы похожие на “? в CPP”

Вопросы похожие на “? в CPP”

Больше похожих ответов на “? в CPP” по C++

Смотреть популярные ответы по языку

Смотреть другие языки программирования