30/09/2018, 16:10

Khác nhau giữa identifier, variable and keyword

Sắp đến kỳ thi cuối học phần của mh, tự dưng hôm nay có 1 thằng học cùng nó hỏi câu này, mong mọi người góp ý.
All languages reserve certain words for their internal use, these words hold specific meaning within the context of particular language, and reffered to as …
A. identifier
B. variable
C. keyword
D. operator

Em trả lời nó là C. keyword
Rất mong m.n góp ý!

Nguyễn Minh Dũng viết 18:15 ngày 30/09/2018

C. Keyword

Hóng các thành viên khác

Lãnh Huyết viết 18:10 ngày 30/09/2018

anh có thể phân tích cho em rõ sự khác biệt giữa variable,identifier và keyword ko ạ? @ltd
Em tìm hiểm 1 số tài liệu trên google rồi nhưng vẫn hơi lơ mơ LOL =))

Nguyễn Minh Dũng viết 18:11 ngày 30/09/2018
  • Keyword là mấy cái này:
auto
break
case
char
const
continue
default
do
double
else
enum
extern
float
for
goto
if
int
long
register
return
short
signed
sizeof
static
struct
switch
typedef
union
unsigned
void
volatile
while

http://tigcc.ticalc.org/doc/keywords.html

  • Identifiers là tên của biến, class, struct, union, enum, Macro, function
int banh_beo;
long long tien_lai(int tien_gui, int lai_suat);

banh_beo, tien_lai, tien_gui, lai_suat là Identifiers

  • variable là biến thôi.
Bài liên quan
0