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 |
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300,200,100
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
write a program that explain #define and # undef directive
What is the difference between if else and switchstatement
What are the different categories of functions in c?
What are inbuilt functions in c?
What is the use of function in c?
#include<stdio.h> main(0 { printf("\n %d %d %d",sizeof(3),sizeof("3"),sizeof(3)); }
What are bitwise shift operators in c programming?
HOW TO HANDLE EXCEPTIONS IN C
how should functions be apportioned among source files?
How does #define work?