employer cover photo
employer logo
employer logo

Raja Software Labs

Is this your company?

Raja Software Labs interview question

merge two array .??

Interview Answers

Anonymous

11 Aug 2018

import java.util.Scanner; public class Merge2Arr { public static void main(String args[]) { Scanner sc=new Scanner(System.in); int n1=sc.nextInt(); int a1[]=new int[n1]; for(int z=0;z

81

Anonymous

11 Jul 2019

#include #include int main(){ int *array1, *array2, *array3, elements_in_1, elements_in_2, elements_in_3, i, j; printf("Enter no. of elements in array 1: "); scanf("%d", &elements_in_1); array1=(int*)malloc(elements_in_1 * sizeof(int)); for(i=0; i

15