Saturday, 20 June 2020
Difference between = and == operator 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.
Friday, 19 June 2020
Prime number program 1 to 100
Q : Write a program to print all prime numbers from 1 to 100. Use nested loops, break or continue statement wherever necessary.
Answer :
#include<stdio.h>
#include<conio.h>
/*##########################
Girfa Student Help
Prime number 1 to 100
##########################*/
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.
Goto C Language
Goto Example 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.
Wednesday, 17 June 2020
Continue in C language
What are the uses of Continue
Continue statement is transfers execution control at the top
of the loop where the condition checks. All statements after continue skips.
The closing bracket of the loop does the same task. Continue statements should
always be inside of a condition i.e. if, otherwise you may face infinite loop.
Continue statement in C language I feel that the least useful feature.
Example :
#include<stdio.h>
#include<conio.h>
/*##########################
Girfa Student Help
Example of continue
##########################*/
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)