which operator having lowest precedence??
a.)+ b.)++ c.)= d.)%
Answer Posted / cynthia,1st b.sc.,itm
option d)%
as ++ is unary operator with highest precedence,
= is assingnment operator with the next level of precedence
and + is an arithemetic operator with the next level of
prececende.
| Is This Answer Correct ? | 1 Yes | 5 No |
Post New Answer View All Answers
Can two or more operators such as and be combined in a single line of program code?
What are pragmas and what are they good for?
How can you determine the size of an allocated portion of memory?
What is the ANSI C Standard?
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
What do you mean by dynamic memory allocation in c? What functions are used?
Write a program to show the change in position of a cursor using c
What is the default value of local and global variables in c?
Does c have enums?
What is a macro?
What are the types of arrays in c?
Is main is a keyword in c?
How do you search data in a data file using random access method?
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.