how to crate 2 array of n size and third array of size which is equal to these 2 array size
How to crate n size array
@sahudilip138 hey,to create array of size n here is syntax:int a[n] now to create array of size 2n just write
int a[2*n] .
I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.
On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.
how to see test case of a problem
@rishabhmahajan546,
Don’t bother seeing test cases, rather if you can’t solve a problem read it’s editorial, and then implement yourself.