To listen to song on youtube on repeat without having to keep pressing "replay" at the end, add 'repeat' between 'www.youtube' and '.com'
Line
C program to make line- #include<graphics.h> #include<conio.h> void main() { int gd=DETECT, gm; clrscr(); initgraph( & gd, & gm,"c:\\turboc3\\bgi"); line(30,15,100,15); getch(); }
Comments
Post a Comment