Tuesday, 11 July 2017
CSS Animation
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, 10 July 2017
Putchar
Putchar 'C 'Output Function
Putchar write
a character to standard output (monitor). It takes argument as character and returns
its integer form without sign. If a writing error occurs, EOF is returned and
the error indicator (ferror) is set.
#include<stdio.h>
void main()
{
char ar[]={"Girfa"};
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.
Sunday, 9 July 2017
Getchar
Getchar Function
Getchar takes
input a character from standard input (stdin) and return integer value without
sign.
int main(void)
{
int c;
/* Note that
getchar reads from stdin and
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.
Saturday, 8 July 2017
getche
Getche function
Getche is same
as getch function, both takes input from keyboard the difference is return
type.
- Getch does not echo given character only return integer value
- Getche echo and return integer code of given character
#include<stdio.h>
void main()
{
char n;
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)