#include <iostream.h>
^ . , 1998 . , , Visual ++.
cin>> value;
int numbers[value];
VLA C99 ++. ++, , , ++ 11. , , std::vector vector - .
g++ . . .
d:\dev\test> g++ foo.cpp
d:\dev\test> g++ -pedantic -std=c++0x -Wall -O foo.cpp
foo.cpp: In function 'int main()':
foo.cpp:11: warning: ISO C++ forbids variable length array 'numbers'
foo.cpp:7: warning: unused variable 'sum'
foo.cpp:8: warning: unused variable 'count'
d:\dev\test> _