Current location - Plastic Surgery and Aesthetics Network - Plastic surgery and medical aesthetics - How to output an integer string
How to output an integer string
Um ... According to the meaning of the question, you mean to output an array of strings.

A points to an array of strings, so there is no problem.

For example:

char a[]= " ASDFG ";

printf("%s ",a);

or

char * a;

char b[6]= " ASDFG ";

a = b;

printf("%s ",a);

"Integer" is an integer in plain English.

int * a;

int b = 1;

a = & ampb;

printf("%d ",* a);

This is the output of an integer