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,845 questions

51,766 answers

573 users

How to move all zeroes to end of array in C++

1 Answer

0 votes
#include <iostream>

void move_zeroes_to_end(int arr[], int size) { 
    int j = 0;
    for (int i = 0; i < size; i++) {
        if (arr[i] > 0) {
            int tmp = arr[i];
            arr[i] = arr[j];
            arr[j] = tmp;
            j++;
        }
    }
} 
    
int main() 
{ 
    int arr[] = { 0, 8, 0, 0, 0, 7, 15, 0, 0, 4, 6, 99 }; 
    int size = sizeof(arr)/sizeof(arr[0]); 
    
    move_zeroes_to_end(arr, size); 
    
    for (int i = 0; i < size; i++) 
       std::cout << arr[i] << " ";
    
    return 0; 
} 
  
  
  
  
  
/*
run:
   
8 7 15 4 6 99 0 0 0 0 0 0 
   
*/

 



answered Nov 27, 2021 by avibootz
edited Nov 27, 2021 by avibootz

Related questions

1 answer 107 views
107 views asked Nov 27, 2021 by avibootz
1 answer 173 views
173 views asked Nov 28, 2021 by avibootz
1 answer 168 views
1 answer 194 views
1 answer 167 views
1 answer 183 views
1 answer 135 views
135 views asked Nov 27, 2021 by avibootz
...