Skip to main content

Posts

पुस्तकों की महत्व हिंदी में | Importance of book

पुस्तकों की महत्व किताबों के पास आपके जीवन के बहुत सारे सवाल के जवाब होते हैं | यह आपके सबसे अच्छे दोस्त होते हैं पुस्तकें इंसान की सबसे अच्छी और भरोसेमंद दोस्त होती हैं | यह वह दोस्त होती है जो आपको कभी धोखा नहीं देती | यह मुश्किल समय में आपकी हमेशा हौसला बढ़ाती हैं , आपके चेहरे पर मुस्कुराहट भी लाती हैं , आपकी आंखों में आंसू भी लाती हैं , और दुनिया भर की सही और सच्ची जानकारियां देती है | 23 अप्रैल को वर्ल्ड बुक डे के रूप में मनाया जाता है| अपने ध्यान दिया होगा किताबे से एक अलग तरह की खुशबू आती हैं और इस खुशबू को इंग्लिश में BIBLIOSMIA कहते हैं | इंटरनेट के मुकाबले किताबों में पढ़ी गई बातें लंबे समय तक याद रहती हैं | किताबों से जुड़ी तीन महत्वपूर्ण बातें 1.) किताबें हमें कल्पना की दुनिया में ले जाती हैं | हमारी कल्पना की दुनिया को सुंदर और मजबूत बनाती है | वह हमारे पैर जमीन पर होने देती हैं और अगर ध्यान से पढ़ेंगे तो ऐसा ल...

Coronavirus se safe rhne ke liye kya kre?

Coronavirus se safe rhne ke liye kya kre? Coronavirus esse SARS-COV-2 bhi bolte hai. Jaisa ki aap sabhi jante hai Novel Coronavirus pandemic declare kiya ja chuka hai.ye person to person very fast spread hota hai. Es virus se safe rhne ka rasta:- A.)- 1 st things aap apna immune system strong bnaye rkhe.Agar kisi ko Coronavirus ho gya ho aur unka immune system strong hai to unko keval hlka sa mild symptoms(hlka sa sardi,khasi)aaega aur wo thik ho jaenge.Aapka immune system hi aapke body se aapke virus ko nikalta hai   aur koi nhi.Abhi tak jitne logo ka death huaa hai unme se maximum old age ke the unka immune system weak hota hai. Apne immune system ko strong krne ke liye kya kre? 1:- Apne immune system ko strong krne ke liye Green vegetables khaye aur junk food ko ignore kre. 2:- Citrus Food ex:-lemon,orange etc…..        Grapefruit ye sub jyada matra me khaye. Esse Vitamin and white blood cell cell increase hota hai...

Write a program in foxpro to generate fibonacci series.

                            Ans:- Input"Enter the last term of fibonacci series:-"to num a=0 b=1 i=1 ?a do while(i<=num) c=a+b a=b b=c ?a i=i+1 enddo

Write a data structure program to make an array as stack.

Ans:- #include<stdio.h> #define MAX 10 int st[MAX],top=-1; void push(int st[],int val); int pop(int st[]); void display(int st[]); int main() { int val,option; do { printf("\n *****MAIN MENU*****"); printf("\n 1. PUSH"); printf("\n 2. POP"); printf("\n 3. DISPLAY"); printf("\n 4. EXIT"); printf("\n***************"); printf("\n enter your option:"); scanf("%d",&option); switch(option) { case 1: printf("\n Enter the number to be pushed on the stack:"); scanf("%d",&val); push(st,val); break; case 2: val = pop(st); if(val!=-1) printf("\n The value deleted from the stack is:%d",val); break; case 3: display(st); break;   } } while(option!=5); getch(); return 0; } void push(int st[],int val) { if(top==MAX-1) { printf("\n STACK OVERF...

Write a program to operate on linked list.All possible operation are performed through separate functions.

#include<stdio.h> #include<malloc.h> struct node { int data; struct node *next; }; struct node *start=NULL; struct node *create_11(struct node *); struct node *display(struct node *); struct node *insert_beg(struct node *); struct node *insert_end(struct node *); struct node *insert_before(struct node *); struct node *insert_after(struct node *); struct node *delete_beg(struct node *); struct node *delete_end(struct node *); struct node *delete_node(struct node *); struct node *delete_after(struct node *); struct node *delete_list(struct node *); struct node *sort_list(struct node *); int main() { int option; do { printf("\n\n *****MAIN MENU*****"); printf("\n1:Create a list"); printf("\n2:Display the list"); printf("\n3:Add a node at the beginning"); printf("\n4:Add a node at the end"); printf("\n5:Add a before a given node"); printf("\n6:Add a node after a g...