#include stdio.h> #include<math.h>What is the output of the programint main (){int a=1, b=2, c=1; c+=(-c)?a:b;printf("the output is C=°d",c);}
#include<stdio.h >What is will be the output?int main(){int x = 10, y = 20, z = 5, i ;i = x<y<z ;printf ("%d\n");return 0;}