Sorry! Posting Assignment is allowed only for commercial accounts.
#include<stdio.h>int main(){ char * ptr; char string[] = " Learn C Language from Sookshmas "; ptr = string ; ptr += 6; printf("%s", ptr); return 0;}