11 lines
139 B
C++
11 lines
139 B
C++
#include <iostream>
|
|
|
|
const char str [] ="This is a [] string.";
|
|
|
|
int main ( void )
|
|
{
|
|
std::cout << sizeof(str) << std::endl;
|
|
return 1;
|
|
}
|
|
|