Author admin

Simplifying Payments and Empowering Indian Businesses by Knit Pay

In the competitive digital landscape, offering a seamless and secure payment experience is crucial for business success. Knit Pay is a versatile payment integration plugin designed specifically for Indian businesses, enabling them to streamline their payment processes and enhance customer engagement. One of the standout features of Knit Pay is its ability to support multiple […]
How to Change WordPress Password From cPanel in phpMyAdmin WordPress

How to Change WordPress Password From cPanel in phpMyAdmin

How to Change WordPress Password From cPanel in phpMyAdmin in Hindi इस त्वरित मार्गदर्शिका में, हम आपको बताएंगे कि अधिकांश वेबहोस्टिंग cPanels में पाए जाने वाले टूल phpMyAdmin का उपयोग करके वर्डप्रेस उपयोगकर्ता का पासवर्ड कैसे बदला जाए। PhpMyAdmin से वर्डप्रेस पासवर्ड बदलने के लिए सरल है (इसमें एक मिनट से भी कम समय लगता […]
WordPress Contributors Propose Blocking FLoC in Core by Digital Ranger Updates

WordPress Contributors Propose Blocking FLoC in Core

WordPress contributors proposing the project take an active position on Google’s Federated Learning of Cohorts (FLoC). यह विशेष म्कैनिज्म गूगल तीसरे पक्ष के कुकीज़ का विकल्प है जिसमें उपयोगकर्ताओं के ब्राउज़िंग हिस्ट्री को एकत्र करने की आवश्यकता नहीं है। यह GitHub repository for FLoC देखिये Google कैसे लोगों को एक साथ ग्रुप में जोड़ने का […]
High DA PA Web 2.0 Websites List 2021 SEO

High DA PA Web 2.0 Websites List 2021 BY Digital Ranger

List of top free high DA web 2.0 Sites. High DA PA Web 2.0 Websites List 2021 यदि आप अपने Website को रैंक करने के लिए तैयार हैं  पर आपको एहसास होता है कि आपको बैकलिंक्स बनाने की आवश्यकता है तो आप पहले Web 2.0 बनाना होगा । जैसा कि आपने अपने नए Blog या Bussines  […]
Introduction of Information Technology Information Technology

Introduction to Information Technology

Introduction of Information Technology:- A PC (personal computer) is a microcomputer.  A PC is a single-user system, designed to fit on top: hence the word Personal. The IBM PC was introduced in the early eighties and since then has been modified and improved. Subsequent PCs have been designed to run any software written for preview […]
Write a program to sort elements of given array having ‘n’ numbers of element, using Selection sort. Data Structure

Write a program to sort elements of given array having ‘n’ numbers of element, using Selection sort.

Write a program to sort elements of given array having ‘n’ numbers of elements, using Selection sort. #include #include void main() { clrscr(); int size, arr[50], i, j, temp; cout<>size; cout<<“Enter Array Elements : “; for(i=0; i>arr[i]; } cout<<“Sorting array using selection sort…n”; for(i=0; i<size; i++) { for(j=i+1; jarr[j]) { temp=arr[i]; arr[i]=arr[j]; arr[j]=temp; } } […]

Write a program to implement the concept of pointer to array access in functions.

#include #include main() { int *p,i,n; void modify(int *,int); clrscr(); cout<>n; for(i=0;i<n;i++) { cout<<"n A["<<i<>*(p+i); } cout<<"nnn"; cout<<"n Before calling the function for modification elements are :n"; for(i=0;i<n;i++) { cout<<"n A["<<i<<"]="<<*(p+i); } modify(p,n); cout<<"n After modification each element incremented by 500 n"; for(i=0;i<n;i++) { cout<<"n A["<<i<<"]="<<*(p+i); } getch(); return(0); } void modify(int *t, int s) […]