Horje
online embedded c compiler Code Example
online c compiler
You can try https://www.onlinegdb.com/ this as well, works really well for me.
You can also save code there.
online embedded c compiler
#include<reg51.h>
void main(void)
{
  bit mydata P1^0;
  //char mydata[]={};
	for(z=0;z<=50000;z++)
	{
		P1= 0x55;
		P1= 0xAA;
	}
	//P1= mydata[z];
}
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++)
 {
 }
 }
}
online embedded c compiler
Sample Program
online embedded c compiler
#include<avrio.h>
int main(void)
{
DDRB =0xFF;
PORTB= cc_ssd[0x3F,0x06,0x5B,0x4F,0x66,0x6D,0x7D,0x07,0x7F,0x6F];
while(1)
{
for (i=0;i<9;i++)
{
PORTB=cc_ssd[i];
delay_ms(1000);
}
return 0;
}
}




Csharp

Related
HttpClient .net Core add Certificate Code Example HttpClient .net Core add Certificate Code Example
does Registry.CurrentUser.OpenSubKey create the key if it does not exist? Code Example does Registry.CurrentUser.OpenSubKey create the key if it does not exist? Code Example
how to pass function as paraemter of another function pythpn Code Example how to pass function as paraemter of another function pythpn Code Example
autofixture ignore property Code Example autofixture ignore property Code Example
two lowest positive numbers given an array of minimum Code Example two lowest positive numbers given an array of minimum Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9