c 2b 2b static array in klasse

Solutions on MaxInterview for c 2b 2b static array in klasse by the best coders in the world

showing results for - "c 2b 2b static array in klasse"
Manuel
07 May 2016
1// Declare in Header- File:
2class A
3{
4	char a[6] = {1,2,3,4,5,6};
5}
6
7// Define in fitting .cpp file
8char A::a[6] = {1,2,3,4,5,6};
similar questions
queries leading to this page
c 2b 2b static array in klasse