Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

새싹교실/2017/내무반/조현민/포인터실습

From ZeroWiki
Revision as of 12:04, 19 May 2017 by imported>chohm1223
  1. include<stdio.h>

int main() { char str[10]; char * p_str=0;

scanf("%s", str);

p_str = &str[4];

    • p_str = '@';

p_str = &str;

printf("%s\n", p_str); return 0; }