Search
 
SCRIPT & CODE EXAMPLE
 

C

c printing char pointer

#include <stdio.h>

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

return 0;
}
Comment

how to use pointer in c to print char

#include <stdio.h>

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

PREVIOUS NEXT
Code Example
C :: limit axis in one direction plt 
C :: callback c++ c 
C :: gcc option to show rules of makefile 
C :: strcasecmp c 
C :: add a item to cart woocomerce with quantity 
C :: how to make sure input is integer c 
C :: c int to char 
C :: fopen in c example 
C :: try and catch in rust 
C :: mpi example 
C :: star pattern in c 
C :: ft_putchar 
C :: server client tcp in C 
C :: doble puntero en c 
C :: sort names in array in c 
C :: how compress string in c 
C :: sh: tailwindcss: command not found 
C :: pid of a process in c 
C :: Initialization of a 3d array in c 
C :: mediawiki upload size 
C :: c list 
C :: how to read from a file in c 
C :: atoi string to int 
C :: increment pointer value in c 
C :: insse suprafata arabila pe ani 
C :: Print mark-sheet of students 
C :: add c program 
C :: divide a linked list into three parts based on their position mod 3. 
C :: nested if example in c 
C :: java Node<E 
ADD CONTENT
Topic
Content
Source link
Name
7+4 =