What is the output of the following code?#includestdio.hint main(){int x=3,y=2;printf("%d\n",-(-x-y));return 0;}
#includestdio.hint main(){static char mess[6][30] = {"Don't walk in front of me...","I may not follow;","Don't walk behind me...","Just walk beside me...","And be my friend." };printf("%c, %c\n", *(mess[2]+9), *(*(mess+2)+9));return 0;}
What will be the output of the following c program?#include "stdio.h"int main(){int x, y = 10, z = 10;x = y == z;printf("%d", x);getchar();return 0;}
includestdio.hint main(){int gamer ;int *pro_gamer;int **gone_gamer;pro_gamer = &gamer;gone_gamer = &pro_gamer;printf("%p\n", gone_gamer);return 1;}
#includestdio.h#includestring.hint main(){char str1[6]="HELLO";char str2[4];strncpy(str2,str1,sizeof(str2));printf("%s",str2);return 0;}