Give output for the following code and trace the code

#include<stdio.h>
int main()
{
    char *ptr;
    char string[]="welcome to beyond knowing";
    ptr = string;
    ptr+=11;
    printf("%s",ptr);
    return 0;

}

Posted on by