Write a program to store 5 elements in the array P and 3 elements in the array Q.Produce a third array R after joining the array P and Q.Display the resultant array.
program to store 5 elements in the array P and 3 elements in the array Q.
- 4572 Views
- 1 Answers
1 Answers
-
-
- 30 Jul
- 0 Comment
-
- Why C language is introduced? Explain your answer
- Бесплатные программы
- What site is the best video tutorial website for learning C programming?
- TELL ME THE TIPS AND TRICKS of c prog
- Is C++ better than C? Explalain your answer
- Is C++ better than C sharp? Explain your answer
- Программы и игры для Андроид телефона
- Write a program to read the marks of 50 students in a class and display the following:
- What does a person require to opt C programming as a career?
- What are jump statements in c language?
Practice Mock Test
c programming
#include<stdio.h>br /#include<conio.h>br /void main()br /{br / int p[5],q[3],r[8],i,j;br /clrscr();br /printf("enter the elements of an array P-\n");br /for(i=0;i<5;i++)br /scanf("%d",&p[i]);br /printf("enter the elements of an array Q-\n");br /for(i=0;i<5;i++)br /scanf("%d",&q[i]);br /printf("After joining P and Q..............-\n");br /for(i=0;i<5;i++)br /r[i]=p[i];br /for(j=0;j<3;j++)br /{br / r[i]=q[j];br /i++;br /}br /printf("Total elements of an array R-\n");br /for(i=0;i<8;i++)br /printf("%d\n",r[i]);br /getch();br /}br /