Pointers with strings · #include<stdio.h> · void main () · { · char s[11] = "javatpoint"; · char *p = s; // pointer p is pointing to string s. · printf("%s",p); // ...
確定! 回上一頁