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;}
Not registered? Create an account
Forgot Password?
Already a registered user? Login