C Programming and Technical Programming Program

In which order do the following gets evaluated
1. Relational
2. Arithmetic
3. Logical
4. Assignment

Options
1) 2134
2) 1234
3) 4321
4) 3214

Read Solution (Total 9)

C Other Question

Assunming, integer is 2 byte, What will be the output of the program?
#include

int main()
{
printf("%xn", -2<<2);
return 0;
}
Options
1) ffff
2) 0
3) fff8
4) Error
Write a program to concatenate two strings.