Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
3
Posts with Downvotes
3
Downvoting Members
1
0 Endorsements
~144 People Reached
Favorite Forums
Favorite Tags
c x 3
Member Avatar for Niraj Agarwal

#‎include‬ <stdio.h> #include <conio.h> #include <malloc.h> ‪#‎define‬ MAX1 5 #define MAX2 7 int* arr; int* create (int size){ int *arr,i; arr = (int *)malloc (sizeof(int)* size);/*note here size of (int )*size means size of int size no. of times, size is the no of integers in the array*/ for (i=0;i<size;i++){ …

Member Avatar for rubberman
-1
144