edited by
449 views

2 Answers

Best answer
0 votes
0 votes
printf(\%s ",**++p);  O/P is: Ireland

 

printf(\%s ",*{*++p+3);  O/P is : enland

 printf(\%s ",*p[-2]+3); O/P is : tzerland
selected by
1 votes
1 votes

I just did only 1 mistake here at address 403 in I missed  "T" I write "Swizerland " instead of "Switzerland"

edited by

Related questions

0 votes
0 votes
2 answers
1
shiva0 asked Jul 18, 2018
882 views
#include<stdio.h main() { char c = 'A'+255; printf("%c", c); }
0 votes
0 votes
2 answers
2
shiva0 asked Jul 18, 2018
4,560 views
#include <stdio.h>main(){char *p = 0;*p = 'a';printf("value in pointer p is %c\n", *p);}
2 votes
2 votes
2 answers
4
atulcse asked Jan 15, 2022
700 views
Consider the following programint find (int n) { int a = 1; for (i = 1; i < = n; i ++) for (j = 1; j < = i; j++) for (k = 1; k <= j, k++) a = a + 1; ...