Thursday, 31 August 2017
Preprocessor Directive
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.
Computer Fundamental MCQ CCC
CCC Fundamental MCQ/True-False Question with Answer
Multiple Choice
1. How many types of memory used in computer?A) 1
B) 2
C) 3
D) 4
2. Which Type of memory got outdated?
A) PROM
B)EEPROM
C)CD
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, 23 August 2017
Command Line Argument
C language is known as a language of building block of
function. It means all the things achieved by the language using function.
A function is a set of some valid statements of language. Which
achieved some specific task? You need to know some information about function
before using it.
- Function name
- Return type
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.
Tuesday, 22 August 2017
Print Some Character from a File
Q : Write a ‘C’ program to print only first 12 characters including blank space from file test.txt.
Solution :
Solution :
#include<stdio.h>
#include<conio.h>
void main()
{
FILE *pt;
int i;
char ch;
pt=fopen("test.txt","r");
if(pt==NULL)
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)