I Just came along a question and when i compiled and run it in CodeBlockes I got an error and i could not run it.
Here is the question.
What will be the output of the program ?
#include<stdio.h> 
#include<string.h>
int main(){
   int i, n;
   char *x="Alice";
   n = strlen(x);
   *x = x[n];
   for(i=0; i<=n; i++){
      printf("%s ", x);
      x++;
   }
   printf("\n", x);
   return 0;
}
A. Alice
B. ecilA
C. Alice lice ice ce e
D. lice ice ce e
 
     
     
     
    