 What is output of below program?
 What is output of below program?
int main(){int i,j,count;count=0;for(i=0; i8; i++);{for(j=0;j8;j++);{count++;}}printf("%d",count);return 0;}
 
 #include stdio.hWhat is the output of the following program#include math.hint main() {double number = 10.0;double cubeRoot = cbrt(number);printf("The cube root of %.2f is %.2f\n", number, cubeRoot);return 0;}
 Q The  no of octahedral void (s) per atom  present in a cubic- closed packed structure is .
 Q The  no of octahedral void (s) per atom  present in a cubic- closed packed structure is . Predict the output:
 Predict the output:#include iostreamusing namespace std;int main(){for(int i=0;i6;i++){for(int j=0;j6;j++){cout"*";}coutendl;}}