c compiler example
Example 1: c compiler online
i reccomend online gdb https://www.onlinegdb.com/online_c_compiler
Example 2: online c compiler
#include
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
Example 3: learn c online
replit.com is your best shot tbh