Answers for "how to print char array in c"

C
0

return char array in c

char * createStr() {

    char char1= 'm';
    char char2= 'y';

    char *str = malloc(3);
    str[0] = char1;
    str[1] = char2;
    str[2] = '';

    return str;

}
Posted by: Guest on March-21-2021
0

printing out 2 strings in c

// Use of Getstring 
#include<stdio.h>
int main(){
char name[100];
int age;
printf("Enter your namen");
gets(name);
printf("your name is %s", name);
}
//In the terminal your name is (name input)
Posted by: Guest on February-03-2021
0

char array in c with string

char arr[] = "code";
Posted by: Guest on November-18-2021
-2

How to return a char array from a function in C

#include <stdio.h>
#include <string.h>
    char* createStr(){
    static char str[20] = "my";
    return str;
}
int main(){
    char a[20];
    strcpy(a,createStr()); //this will copy the returned value of createStr() into a[]
    printf("%s",a);
    return 0;
}
Posted by: Guest on July-01-2021

Code answers related to "C"

Browse Popular Code Answers by Language