C | Operators | Question 12

Last Updated :
Discuss
Comments
C
#include<stdio.h> 
int main() 
{ 
  char *s[] = { "knowledge","is","power"}; 
  char **p; 
  p = s; 
  printf("%s ", ++*p); 
  printf("%s ", *p++); 
  printf("%s ", ++*p); 
  
  return 0; 
}
is power
nowledge nowledge s
is ower
nowledge knowledge is
Tags:
Share your thoughts in the comments