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 :: vifm preview images 
C :: string in c and how it works 
C :: convert video to gif with ffmpeg 
C :: enum case statement in c 
C :: scan c 
C :: struct in struct 
C :: what is the use of malloc in c 
C :: size of operator in c language 
C :: declare and initialize a string in C 
C :: unused variable in c 
C :: exponentials in c 
C :: c get pid 
C :: c for result 
C :: 4 byte alignment c code 
C :: how to only show tenths place in c 
C :: how to convert c program in to assembly 8051 online 
C :: c to assembly online compiler 
C :: send an array through a pipe 
C :: execute asm in c 
C :: perl file handling 
C :: My name is c 
C :: simpy process return value 
C :: c ausgabe von variablen 
C :: find a substring within a string in c and return the index 
C :: Print fabionci with fork in C 
C :: print number in c 
C :: print binary in c 
C :: c printf float value 
C :: i2c scanner 
Dart :: flutter keyboard causes overflow 
ADD CONTENT
Topic
Content
Source link
Name
5+7 =