#include
int main()
{
int a = -5;
unsigned int b = -5u; // (*)
if(a == b)
printf(“Avatar”);
else
printf(“Alien”);
return 0;
}
What will be output when you will execute following c code?
A. Avatar
B. Alien
C. Error at (*)
D. Another
Hướng dẫn
Chọn A là đáp án đúng
Thư viện tài liệu12 Tháng bảy, 2023 @ 3:01 chiều