#include<stdio.h> #include<stdlib.h> int i,n; int largearr(int *); int main() { int k; int *a; printf("Enter the size of the arrays\n"); scanf("%d", &n); a = (int *)...
guys is it okay to ask logic based c questions?