

channel link:
https://www.youtube.com/channel/UC7_of2QA1tk9nEFiYhKp8jg
this is an educational and professional website about electornics applied physics and engineering and programing .I m requesting you all to read post and give feedback on this site i m a learner and student thanks
video link:
source code:
//this is my first program
#include<stdio.h>
#include<conio.h>
void line(void);
main(void)
{
line();
printf(“\n”);
printf(“\xDB the c is the most powerful language \xDB\n”);
line();
getche();
}
void line(void)
{
int a;
for(a=0;a<39;a++)
printf(“\xDB”);
}
thaks you guys subscribe my channel for more lectures::
Youtube link of the lecture:

#include
#device ADC=10
#fuses HS,NOWDT,NOPROTECT,NOLVP
#use delay(clock=40000000)
#use rs232(baud=9600, xmit=PIN_C6, rcv=PIN_C7)
#include “lcd.c”
void main (void)
{
long m_Adc_Value=0;
long int value;
float m_Voltages=0.0;
setup_adc_ports(AN0_AN1_AN2_AN3_AN4);
setup_adc(ADC_CLOCK_INTERNAL );
lcd_init();
setup_ccp1(CCP_PWM);
setup_timer_2(T2_DIV_BY_4, 249, 1); //
while(1)//
{
value=read_adc();
set_pwm1_duty((int16)value);
printf(lcd_putc,”\fduty cycle= %Ld “,value);
delay_ms(200);
}
}
thank you guys:
frequency counter circuit using digital ic’s