1//<Data type> <variable name>;
2//static initialisation:
3int acceleration=4;
4//alternative:
5int acceleration;
6acceleration=4;
7//dynamic \initialisation:
8int acceleration;
9std::cout<<"Enter the value of the acceleration\n";
10std::cin>>acceleration;
11