an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order
a) assignment, relational, arithematic
b) arithematic, relational, assignment
c) relational, arithematic, assignment
d) assignment, arithematic, relational
No Answer is Posted For this Question
Be the First to Post Answer
What is a lookup table in c?
struct abc { unsigned int a; char b; float r; }; struct xyz { int u; struct abc tt; }ww; ww = (struct xyz*)malloc(sizeof(struct xyz)); will the memory be allocated for the inner structure also?
A program to allow an input operand and operator from the operator and read on the display and output operand.
write a program to check whether a number is Peterson or not.
What is the scope of local variable in c?
what is real time system?what is the differance between hard and soft real time systems
What is nested structure with example?
can you explain in brief what is "r+" mode in a file... i know that it si used to read and modify rhe existing content.... but explalanation about the file pointer in "r+" mode i wann to know???????????
how can be easily placed in TCS.
main() { int i=0; while(+(+i--)!=0) i-=i++; printf(i); }
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above
# define x=1+4; main() { int x; printf("%d%d",x/2,x/4); }