What is the role of && operator in a program code?
Answer / Deepak Varshney
The 'logical AND' operator (&&) tests whether both expressions are true. It has higher precedence than the 'OR' operator (||). If both conditions are true, it returns true; otherwise, it returns false.
| Is This Answer Correct ? | 0 Yes | 0 No |
When should the register modifier be used? Does it really help?
what are the various memory handling mechanisms in C ?
What is a memory leak in structures? How can we rectify that?
write a program to print the one dimensional array.
What is a wrapper function in c?
Can the size of an array be declared at runtime?
Why is c called "mother" language?
Write a progarm to find the length of string using switch case?
int main(){ float f=8.0; if(f==8.0) printf("good"); else printf("bad"); } what is the answere and explain it?
What is the meaning of && in c?
Explain how can I manipulate strings of multibyte characters?
What are the differences between new and malloc in C?