online c compiler
I Personally Like
https://www.programiz.com/c-programming/online-compiler/
online c compiler
I Personally Like
https://www.programiz.com/c-programming/online-compiler/
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]);
}
}
online embedded c compiler
#include<AT89X51.h> // special function register declarations
// for the intended 8051 derivative
void Delay(void); // Function prototype declaration
void main (void)
{
while(1) //infinite loop
{
P2 = 0x55; // LED 0b 0101 0101;
Delay();
P2 = 0xAA; // LED 0b 1010 1010;
Delay();
}
}
void Delay(void)
{
int j;
int i;
for(i=0;i<10;i++)
{
for(j=0;j<10000;j++)
{
}
}
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us