Variable and Operator
การแสดงค่า variable ในภาษา c++
#include <iostream>#include <iostream>
int main() {
int a=0;
float g = 1.0;
std::cout << a << " Test" << g <<std::endl;
/*prints 'a' is int a data type,
"Test" is a message and
'g' is float a data type to the output. */
return 0;
}using namespace std;Escape character in c ++


Operator

แหล่งอ้างอิง :
Last updated
Was this helpful?
