Wednesday, 1 February 2017
Simple Triangle C Language
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.
Monday, 30 January 2017
C Language Structure Record Entry
NIELIT O Level Solved Paper
January 2016
C Language
Q8 b) Write a program to create a structure Employee having empCode, name, department, address and salary as its members. Read the details for 10 employees and then display them.
Solution :
#include<stdio.h>
#include<conio.h>
struct
stu
{
int empcode;
char name[20];
char dept[20];
char address[20];
int sal;
};
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.
Factorial number with recursion
NIELIT O Level Paper
C Language
January 2016 Solved
Q8 a) Write a program having a recursive function to calculate the factorial of a number. In the main() function, read the value of the number and then using the recursive function display the result.
Solution :
/* ################################
Girfa Student Help
Factorial recursion program
for more visit :
http://girfahelp.blogspot.in/p/c-language.html
################################
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.
Traffic Light Programe
NIELIT O Level January 2016 Solved
Q 7 : c) Write a program that displays the recommended actions depending on the color of a traffic light using the switch statement.
Solution :
/*
*******************************************
Girfa : Student Help
Traffic Light Program
for more program visit :
http://girfahelp.blogspot.in/p/c-language.html
********************************************/
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)