CPP-Programs- icon indicating copy to clipboard operation
CPP-Programs- copied to clipboard

Accepted for Hacktoberfest

Results 12 CPP-Programs- issues
Sort by recently updated
recently updated
newest added

recursive function for finding non duplicate subsets

@iamAnki Can you assign me this with hacktoberfest accepted label so that I can make a PR? I have already made a PR can you please accept that?

Switched to std::vector: Replaced the dynamic array float arr[n] with std::vector to properly handle runtime-determined sizes in C++. Bucket Index Adjustment: Added a check to ensure that values outside the...

The variable a is declared but never used. Also, initializing count{} is fine, but using int count = 0; is more common for readability. Similarly, x could be initialized when...

1. Dynamic Array Declaration: The program uses float arr[n], but this isn’t valid in standard C++ since arrays can't be dynamically sized this way. You should use std::vector instead to...