which operator having lowest precedence??
a.)+ b.)++ c.)= d.)%
Answer Posted / jalal
c)=
| Is This Answer Correct ? | 17 Yes | 0 No |
Post New Answer View All Answers
What are the preprocessor categories?
What are types of preprocessor in c?
how to write a c program to print list of fruits in alpabetical order?
What is volatile variable in c with example?
Is null valid for pointers to functions?
In C language what is a 'dangling pointer'?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
What is the difference between text and binary i/o?
What is NULL pointer?
how can use subset in c program and give more example
What is sizeof array in c?
Why use int main instead of void main?
When is the “void” keyword used in a function?
What are the basic data types associated with c?
int i=10; printf("%d %d %d", i, i=20, i);