Saturday 10 February 2018

Animated circle c graphics






/*==============================
     Girfa Student Help
     Program : Animated circle
     More Program :http://girfahelp.blogspot.in/p/graphics-c-language.html
================================*/

#include <graphics.h>
#include <stdlib.h>
#include <stdio.h>
#include <conio.h>
#include <dos.h>
int main(void)
{
   /* request auto detection */
   int gdriver = DETECT, gmode, errorcode;
   int midx, midy;
   int radius = 100;

Fill Drop down list using razor

Store Procedure


USE [Girfa_ProductDB]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER proc [dbo].[fetchProduct]
AS
BEGIN
     select  id,productname from dbo.product order by productname
END


CHTML

@model IEnumerable<Britanic_MIS.Models.ProductModel>

Product : 
<select class="form-control

Friday 9 February 2018

Polygon fill C Graphics



/*==============================
     Girfa Student Help
     Program : Polygon fill demo
     More Program : http://girfahelp.blogspot.in/p/graphics-c-language.html
     Coder Name : Mayank Khare , BCA
================================*/
#include <graphics.h>
#include <stdlib.h>
#include <stdio.h>
#include <conio.h>

int main(void)
{
   /* request auto detection */
   int gdriver = DETECT, gmode, errorcode;
   int maxx, maxy;

   /* our polygon array */

Thursday 8 February 2018

Scenery C graphics



Source Code :


/*==============================
     Girfa Student Help
     Program : Scenery C graphics
     More Program :http://girfahelp.blogspot.in/p/graphics-c-language.html
Coder : Mayank Khare , BCA 
================================*/
#include <graphics.h>
#include <stdlib.h>
#include <stdio.h>
#include <conio.h>
#define x 500
int main(void)
{
   /* request auto detection */
   int gdriver = DETECT, gmode, errorcode;
   int xmax, ymax,i;
   int poly[100];