void main() { float a=5,b=2; int c; c=a%b; printf("%d",c); } what is the output of the above program code example
Example: #include int main() { int x=(20||40)&&(10); printf("%d",x); return 0; }
#include <stdio.h> int main() { int x=(20||40)&&(10); printf("%d",x); return 0; }