“Как использовать указатель в C для печати Char” Ответ

Как печатать значение указателя в c

#include <stdio.h>
#include <stdlib.h>

void pointerFuncA(int* iptr){
/*Print the value pointed to by iptr*/
printf("Value:  %d\n", *iptr );

/*Print the address pointed to by iptr*/
printf("Value:  %p\n", iptr );

/*Print the address of iptr itself*/
printf("Value:  %p\n", &iptr );
}

int main(){
int i = 1234; //Create a variable to get the address of
int* foo = &i; //Get the address of the variable named i and pass it to the integer pointer named foo
pointerFuncA(foo); //Pass foo to the function. See I removed void here because we are not declaring a function, but calling it.

return 0;
}

C

#include <stdio.h>

int main()
{
char * str = "Hello";
printf("%s\n", str);

return 0;
}
Calm Centipede

Как использовать указатель в C для печати Char

#include <stdio.h>

    int main(void) {
        char *p = "abc";
        printf("%c",*p);
        return 0;
    }
Glorious Gentoo

Ответы похожие на “Как использовать указатель в C для печати Char”

Вопросы похожие на “Как использовать указатель в C для печати Char”

Больше похожих ответов на “Как использовать указатель в C для печати Char” по C

Смотреть популярные ответы по языку

Смотреть другие языки программирования