Saturday 20 January 2018

Brokerage Management Software VB

Brokerage Management Software VB

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.

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>

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;

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");