int main(){char grade={'A','B','C'};printf("%c", grade[0]);}
What will the result of num1 variable after execution of the following statements?int j = 1, num1 = 4;while (++j = 10){num1++;}
#include stdio.hint main(){int data = 16;data = data 1;printf("%d\n", data );return 0;}
#includestdio.hint main() {int a=20;do{printf("%d\n",a);}while(a=10);return 0;}