Sorry! Posting Assignment is allowed only for commercial accounts.
void main( ) { int i=107,x=5; printf((x>7)?%d:%c,i); }
What will be the output of the program?#include<stdio.h>int main(){ const int x=5; const int *ptrx; ptrx = &x; *ptrx = 10; printf("%d\n", x); return 0;}