How many times i value is checked in the following C program?#include stdio.hint main(){int i = 0;while (i 3)i++;printf("In while loop\n");}
#include iostreamusing namespace std ;int main(){int p;bool a = true;bool b = false;int x = 10;int y = 5;p = ((x | y) + (a + b));cout p;return 0;}
#include stdio.h
struct employee
{
int id;
char rank[5];
}
void main()
{
struct employee e;
s.no = 30;
printf(howdy);
}
#includestdio.hint main(){void fun(char*);char a[100];a[0] = 'A'; a[1] = 'B';a[2] = 'C'; a[3] = 'D';fun(&a[0]);return 0;}void fun(char *a){a++;printf("%c", *a);a++;printf("%c", *a);}
class variable_scope{public static void main(String args[]){int x;x = 5;{int y = 6;System.out.print(x + " " + y);}System.out.println(x + " " + y);}}
#includeWhat is the outputint main(){int m = 10;int n, n1;n = ++m;n1 = m++;n--;--n1;n -= n1;printf("%d",n);return 0;}
#includestdio.hvoid main (){int a=5,b=2;float c=(float)a/b;printf("value of c = %.2f",c);}