180. Static Memory

Question.6

Two .cpp files both define a variable named buffer:

file1.cpp:

static int buffer[100];

file2.cpp:

static int buffer[100];

Will this cause a linker error?

Need Help? Refer to the Quick Guide below

Select Answer