Horje
Graphics in C Draw A Line Code Example
Graphics in C Draw A Line

#include<graphics.h>
main()
{
  int driver, mod;
  driver = VGA;
  mod    = VGAHI;
  initgraph(&driver, &mod,"C:\\tc\\bgi");
  setcolor(RED);
  line(0,0,320,240);
  getch();
  closegraph();
}




C

Related
c convert float to string Code Example c convert float to string Code Example
check if pid exists c Code Example check if pid exists c Code Example
c for each Code Example c for each Code Example
print variable adress c Code Example print variable adress c Code Example
c   vs python Code Example c vs python Code Example

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