which one low Priority in c?
a)=,b)++,c)==,d)+
Answers were Sorted based on User's Feedback
Answer / satheesh
a)=
The highest priority out of the above is ++,then comes
+,then==, and last priority for =.
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / dharmaraj
d) +
because maths formet to using the answer
B -bracatt ()
O - off %
D - division /
M - mulitiplication *
A - addition +
S - subtractio -
so , low priority is +
| Is This Answer Correct ? | 0 Yes | 0 No |
What are enums in c?
write a c program to find the square of a 5 digit number and print the result.
5 Answers Accenture, Sasken, Vimukti Technologies,
what is the function of void main()?
Explain how do you sort filenames in a directory?
Write a c program to build a heap method using Pointer to function and pointer to structure ?
What will happen when freeing memory twice
How can you restore a redirected standard stream?
write a program that print itself even if the source file is deleted?
what is the difference between %d and %*d in c languaga?
Difference between C and Embedded C?
struct node { int *a; char *b; char array[12]; }; struct node m,*n; assign the value in *a,*b,char array[12]
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none