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.

40,023 questions

51,974 answers

573 users

How to convert part of a string to char array in C++

1 Answer

0 votes
#include <iostream>
  
using namespace std;
  
int main() {
    string s = "c c++ java php"; 
    char arr[8]; 
    
    strncpy(arr, s.c_str(), 8);
      
    for (int i = 0; i < sizeof(arr); i++) { 
        cout << arr[i] << endl;
    } 
}
 
 
/*
run:
 
c
 
c
+
+
 
j
a
 
*/

 



answered Aug 10, 2019 by avibootz

Related questions

1 answer 188 views
2 answers 233 views
1 answer 185 views
185 views asked Oct 5, 2016 by avibootz
1 answer 177 views
1 answer 147 views
...