which operator having lowest precedence??
a.)+ b.)++ c.)= d.)%
Answers were Sorted based on User's Feedback
Answer / 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 |
what is bitwise operator?
What is selection sort in c?
code for concatination of 2 strings with out using library functions?
Explain how can I convert a string to a number?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
pick out the odd one out of the following a.malloc() b.calloc() c.free() d.realloc()
What is a Deque?
What is the general form of #line preprocessor?
What is indirection?
User define function contain thier own address or not.
What does a pointer variable always consist of?
What are local static variables? How can you use them?