Answers for "online embedded c compiler"

C#
13

online c compiler

I Personally Like 
https://www.programiz.com/c-programming/online-compiler/
Posted by: Guest on January-10-2021
0

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]);
    }
}
Posted by: Guest on May-13-2021
0

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++)
 {
 }
 }
}
Posted by: Guest on September-26-2021

C# Answers by Framework

Browse Popular Code Answers by Language