fork download
  1. #include <stdio.h>
  2. int main(void) {
  3. char *name="INDIA";
  4. int x;
  5. char *cptr = name;
  6. while(*cptr != '\0')
  7. {
  8. cptr++;
  9. }
  10. x = cptr - name;
  11. printf("%d", x);// your code goes here
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 5300KB
stdin
Standard input is empty
stdout
5