Sunday, 28 June 2020
Sum of lower triangular program | 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.
Delete a number by given position from array program | C Language
Q : Write a program to delete an element from a given location of an array of integers.
Answer :
#include<stdio.h>
#include<conio.h>
#define MAX 50
/*============================
Girfa Student Help
Remove from array by given index
==============================*/
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.
Link List vs Array
Q :Define array and link list. Give one example for each showing its usage
Answer :
Define Link List
struct node
{
int data;
struct node *next;
}
int ar[5];
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, 27 June 2020
Whatsapp button for website
Add whatsup button at bottom right side of your website.
Button will show when user scroll down because it can disturb your home page
opening view. When user will click on whatsapp button it will redirect to
whatsapp message mode to the given number.
<style>
/* ========= CSS
==========*/
.g-whatsapp {
display: none;
position: fixed;
bottom: 20px;
right: 30px;
z-index: 99;
cursor: pointer;
}
</style>
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)