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 |
Which node is more powerful and can handle local information processing or graphics processing?
Write a programme to find even numbers without using any conditional statement?
3 Answers ADD Software, Infosys,
char S; char S[6]= " HELLO"; printf("%s ",S[6]); output of the above program ? (0, ASCII 0, I,unpredictable)
What is Your Name :)
Why is main function so important?
main() { int i = 10; printf(" %d %d %d \n", ++i, i++, ++i); }
how to reverse string "Hello World" by using pointers only. Without any temp var
Write a c program to demonstrate character and string constants?
Why is C language being considered a middle level language?
write an algorithm to display a square matrix.
What are the functions to open and close the file in c language?
Why header files are used?