What will be the output of the following C program?#includestdio.hstruct employe{int id;char rank[5];}void main(){struct employe e;s.no = 30;printf("howdy"):}
#includestdio.hint main(){int a = 500, b = 100, c;if(!a = 400)b = 300;c = 200;printf("b = %d c = %d\n", b, c);return 0;}
Predict the output??...class kush{public static void main(String[] args){int t=14;System.out.println(t--*t--);}}
#include stdio.hint main(){int *ptr, a = 19;ptr = &a;*ptr += 1;printf("%d,%d\n", *ptr, a);}
public class Test{public static void main(String[] args){int x = 0;assert (x 0) ? "assertion failed" : "assertion passed" ;System.out.println("finished");}}
#includeiostreamusing namespace std;int main(){int a = 45;auto check = [=](){a = 70;};check();cout"Value of a: "aendl;return 0;}
public class Main { public static void main(String arg[]) { int i; for (i = 1; i = 12; i += 2) { if (i == 8) { System.out.println(i); break; } } }}