Sorry! Posting Assignment is allowed only for commercial accounts.
#include<stdio.h> int main() { char *s; char string[] = "Hey What Doing ?"; s = string; s += 3; printf("%s",s); return 0; }
#include <stdio.h>int main(){ int x,*ptr; x=; ptr=&x; printf("The address of x is %d",ptr); return 0;}