Girfa Brokerage Management System
is windows based application software. This application helps brokers to manage
their brokerage amount against of what are the sale he/she has done to many
customers. This is fully customizable software because all the setting of
business will be done by owner. So due to dynamic nature of software, you can
use this software to calculate brokerage amount for any business with reach
feature of powerful reporting for various type of sales and many more. Feature of software are given below.
Saturday, 20 January 2018
Brokerage Management Software VB
A programmer and Founder of Girfa
IT Services, working from 2009.At Starting computer teaching was my full-time job but after 10 years of teaching I chose to programming as a full-time job and teaching become part-time. In real life, I am very lazy and I made it my coding style I always try to make a reusable component that’s my USP for programming which saves my time and extra working both.
HTML form control selector test
Check Radio button check
Gender : Male Female
Code :
Gender :
<input type="radio" name="gender" id="rdomale" checked="checked" />Male
<input type="radio" name="gender" id="rdofemale" />Female
<input type="button" value="Check" onclick="Checkradio()" />
<script>
A programmer and Founder of Girfa
IT Services, working from 2009.At Starting computer teaching was my full-time job but after 10 years of teaching I chose to programming as a full-time job and teaching become part-time. In real life, I am very lazy and I made it my coding style I always try to make a reusable component that’s my USP for programming which saves my time and extra working both.
Wednesday, 17 January 2018
Even Odd group print array
Q : Write a program using function to read an array from the user and print the odd number at odd position and prints the even numbers at even positions. For example input array is 1 2 3 4 and
output is 2 1 4 3.
Solution :
/*==============================
Girfa Student Help
Program : Even Odd group print array
More Program
:http://girfahelp.blogspot.in/p/one-dimentaional-array-programming.html
================================*/
#include<stdio.h>
#include<conio.h>
#define MAX 5
void print(int*);
void main()
{
int ar[MAX],i;
A programmer and Founder of Girfa
IT Services, working from 2009.At Starting computer teaching was my full-time job but after 10 years of teaching I chose to programming as a full-time job and teaching become part-time. In real life, I am very lazy and I made it my coding style I always try to make a reusable component that’s my USP for programming which saves my time and extra working both.
Count Word Character new line
Q : Write a Program to count lines, words and characters with a definition that a word is any sequence of characters that does not contain a blank, tab or new line.
Solution :
/*==============================
Girfa Student Help
Program : Count Word Character new line
More Program
:http://girfahelp.blogspot.in/p/1.html
================================*/
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
void main()
{
FILE *pt;
char ch;
int character=0,line=1,word=1;
clrscr();
pt=fopen("data.txt","r");
A programmer and Founder of Girfa
IT Services, working from 2009.At Starting computer teaching was my full-time job but after 10 years of teaching I chose to programming as a full-time job and teaching become part-time. In real life, I am very lazy and I made it my coding style I always try to make a reusable component that’s my USP for programming which saves my time and extra working both.
Subscribe to:
Posts (Atom)