Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,971 questions

51,913 answers

573 users

How to insert input characters into string array in C

2 Answers

0 votes
#include <stdio.h> 
 
#define ARR_SIZE 100

int main(void)
{   
    char ch;
    char arr[ARR_SIZE] = "";
    int i = 0;

    while ( ( ch = getchar()) != EOF  &&  ch != '\n' &&  i < ARR_SIZE ) 
        arr[i++] = ch;
        
    puts(arr);
    
    return 0;
}

   
/*
run:

c programming
c programming

*/

 



answered Nov 18, 2016 by avibootz
0 votes
#include <stdio.h> 
 
#define ARR_SIZE 100

int main(void)
{   
    char ch;
    char arr[ARR_SIZE] = "";
    int i = 0;

    while ( ( ch = getchar()) != EOF  &&  ch != '\n' &&  i < ARR_SIZE ) 
        arr[i++] = ch;
        
    puts(arr);
    
    return 0;
}

   
/*
run:

F35 Jet Plane
F35 Jet Plane

*/

 



answered Nov 18, 2016 by avibootz

Related questions

2 answers 199 views
1 answer 117 views
117 views asked Apr 26, 2024 by avibootz
1 answer 139 views
139 views asked Nov 14, 2016 by avibootz
2 answers 165 views
3 answers 253 views
2 answers 163 views
1 answer 126 views
...