Example 1: online c compiler
I Personally Like https:
Example 2: online c compiler
You can try https: You can also save code there.
Example 3: c compiler online
i reccomend online gdb https:
Example 4: learn c online
replit.com is your best shot tbh
Example 5: online c compiler
#include<stdio.h> void accept_num(int arr[],int n); int main(void) { int n,ptu[n]; printf("Enter limit of element in an array:"); scanf("%d",&n); accept_num(ptu,n); return 0; } void accept_num(int arr[],int n) { int i; printf("\nEnter the element:"); for (i=0;i<n;i++) { scanf("%d",&arr[i]); } for (i=0;i<n;i++) { printf("\n arr[%d]=%d &arr[%d]=%u",i,arr[i],i,&arr[i]); } }
Example 6: c compilers
Comments
Post a Comment