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
write a c program to find the sum of five entered numbers using an array named number
What is the use of pragma in embedded c?
What is the purpose of Scanf Print, getchar, putchar, function?
Which of these functions is safer to use : fgets(), gets()? Why?
What is C language ?
int i=10; printf("%d %d %d", i, i=20, i);
What are 3 types of structures?
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
what is purpose of fflush(stdin) function
How to print all the 26 alphabets in this order in C. AbCdEfGh..... it should print dynamically from a to z and do not print this using pgm like this print("Ab......"); Use loops or anything to print all alphabets
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.