int main(){int a=25;while(a = 27){printf("%d ", a);a++;}return 0;}
#include stdio.hThe output of code is:int main(){int ary[] = {11, 33, 55};int *p, *q;p = ary;q = ary+3;printf("%d %d",*p, *q);return 0;}
What will be the value of the following assignment expression?#includestdio.hWhat is the output?#includestring.hint main(){char*str = "x";char c = 'x';char ary[1];ary[0] ;printf("%d%d", strlen(str),strlen(ary));return 0;}