Make kabir singh face using c or c++
Computer graphics program coding. Student project Hello guys today i will tell you how to create kabir singh face in computer grapics using c++ or c. This project made by spartan akka spandan dongre from raisoni collage . So lets start the coding. Coding : #include<graphics.h> #include<conio.h> #include<dos.h> #include<stdio.h> void floodfill(int x,int y,int oldcolor,int newcolor) { if(getpixel(x,y)==oldcolor) { putpixel(x,y,newcolor); { floodfill(x+1,y,oldcolor,newcolor); floodfill(x,y+1,oldcolor,newcolor); floodfill(x-1,y,oldcolor,newcolor); floodfill(x,y-1,oldcolor,newcolor); floodfill(x+1,y+1,o...