Answers for "string c"

C
1

como declarar uma string em c

char nome_cliente[61];
Posted by: Guest on July-09-2020
2

c language string

//BY SAMEERAZ
#include<stdio.h>
#include<conio.h>
void main(){
char string[50];
clrscr();
printf("ENTER STRING:");
gets(s);//gets is basically used as scanf();
printf("TYPED STRING:%s",string);
getch();
}
Posted by: Guest on March-17-2021
0

string in c

char c[100];
c = "C programming";  // Error! array type is not assignable.
Posted by: Guest on September-04-2021
0

string in c

#include <stdio.h>
int main()
{
    char name[20];
    printf("Enter name: ");
    scanf("%s", name);
    printf("Your name is %s.", name);
    return 0;
}
Posted by: Guest on September-04-2021
-3

string in c programming

#include <stdio.h>
int main(){
    char name[10];
    printf("What is your name: \n");
    scanf("%s", name);
    printf("Hello, %s!\n", name);
}
Posted by: Guest on April-19-2021

Code answers related to "C"

Browse Popular Code Answers by Language