What is the output of the following code?#includestdio.hint main(){int a=3;while(a=5){printf("Hello ");break ;}printf("know program");return 0;}
public class Sookshmas{public static void main(String args[]){char chars[] = {'s', 'o', 'k'};String sc = new String(chars);System.out.println(sc);}}
int timecomplexity = 0;for (i = 0; i N; i++) {for (j = N; j i; j--) {if(timecomplexity==0)continue;}}
int[] A = {0,2,4,1,3};for(int i = 0; i a.length; i++){a[i] = a[(a[i] + 3) % a.length];}
#includestdio.hint main(){char str1[] = {'S', 'O', 'O','K','S','H'};char str2[] = {'S', 'O', 'O','K','S','H'};if (strcmp(str1, str2)){printf("strings are not equal");}else{printf("strings are equal");}return 0;}