लाडले के इंतजार में मां की आखें, पिता के चेहरे पे उलझन की लकीरें और पत्नी का शिंगार उसे बुलाता था।बच्चों का खिलौना लेकर कोई आता था।जहां पला बढ़ा था बचपन उसका गांव वहीं उसे बुलाता था,पर भारत मां का वो बेटा तिरंगे में लिपटा मुस्कुराता था।जब फोन की घंटी बजती थीं,सांसे उतरती चढ़ती थी,सब ठीक तो है न बेटा, सुना है ठंड बड़ी है वहां,सुनता था पर अनसुना कर जाता था।आज देखो वो भारत मां का बेटा तिरंगे में लिपटा...
Saturday, 1 October 2022
Monday, 12 September 2022
Various Keyboard Shortcuts
CTRL + Delete: Delete the next wordCTRL + Backspace: Delete the previous wordCTRL + Left/Right Arrow: Move your cursor to the next/previous wordWIN + Shift + left/right arrow :Moves active window between displa...
Tuesday, 30 August 2022
Tuesday, 8 December 2020
How to get whatsapp payment option/ whatsapp invite
December 08, 2020
Posted by Knowledge Bite
how to activate whatsapp payment option, whatsapp, whatsapp payment, whatsapp payment invite, whatsapp payment option, whatsapp upi
1 comment

Whatsapp started the payment feature in india which is roling to the customers in the phased manner. first of all it goes to the beta users then after first phase it will go further.
Now if you dont get the payment option in your whatsapp till now then their is a trick to get it fast.for...
Sunday, 18 October 2020
C program to read a name from keyboard and display it on the screen
Hello FriendsToday i will tell you about the String's in the 'C' Language. String's are basically Character Array. Examples of of string constantschar name[]={'K','N','O','W','L','E','D','G','E','\0'};char name[]="KNOWLEDGE";It is a string constant of one dimensional array of characters which is terminated by null ('\0');here '\0' is called the null character in it \n indicates that what...
Tuesday, 22 September 2020
C Program to swap two number using Functions and Pointer's
#include<stdio.h>
#include<conio.h>
void main()
{
void swap(int*,int*);
int a,b;
clrscr();
printf("Enter the value of a = ");
scanf("%d",&a);
printf("Enter the value of b = ");
scanf("%d",&b);
swap (&a,&b);
printf("The value of a = %d \nThe value of b = %d",a,b);
getch();
}
void swap(int *a,int *b)
{
int temp;
temp=*a;
...
C Program to find the number is a Prime Number or Not
#include<stdio.h>
#include<conio.h>
void main()
{
int num,i;
clrscr();
printf("Enter the number = ");
scanf("%d",&num);
i=2;
while (i<=num-1)
{
if (num%i==0)
{
printf("%d is not a prime number",num);
break;
}
i++;
}
if (i==num)
{
printf("%d is a Prime Number",num);
}
getch();
}...