Close
Close

can anyone explain me the below code..

   Rubini

#include <stdio.h>

int main()

{
    char a[]="geeksforgeeks";
    char *p=a;
    while(*p!='\0')
    ++*p++;
    printf("%s%s",a,p);
    return 0;
}
output:hffltgpshfflt


Answers

Ask Yours
Post Yours
Write your answer