0
What does int stand for?
4 Respuestas
+ 2
integer type data
0
integer
0
int stand for integer, which is a data type... example
#include<iostream>
using namespace std;
int main()
{
int a=5, b=-2, x;
x=a+b;
cout<<"x"<<x<<endl;
return 0;
}
output: x=3
0
I hope now u understand