Answer: What is &&& operation in C #computers #programming #development
Answer: What is &&& operation in C #computers #programming #development
What is &&& operation in C
#include <stdio.h> int main(void) { int i, c; for (i = 0; i < 3; i++) { c = i &&& i; printf("%d\n", c); } return 0; }
The output of the above program compiled using gcc is
0 1 1
With the -Wall or -Waddress option, gcc issues a warning:
warning: the address of ‘i’ will always evaluate as ‘true’ [-Waddress]
How is c being evaluated in the above program?
Answer [by Luch…
View On WordPress

















