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
how to use virual function in real time example
program to print upper & lower triangle of a matrix
What are types of structure?
Write a program to reverse a string.
0 Answers Global Logic, iNautix, TCS, Wipro,
Explain the difference between fopen() and freopen().
write a program to find the sum of the array elements in c language?
24 Answers ICT, Infosys, Wipro,
Given an unsigned integer, find if the number is power of 2?
main() { int x=2, y=4 if ((x==2||y==4) x++ y++ if (y==4+1) { x=x+y; } y++; printf("The values of x and y are %d and %d."x,y); } What is the output?
What is the use of structure padding in c?
. Write a program to get a string and to convert the 1st letter of it to uppercase
Explain what is the benefit of using #define to declare a constant?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;