16/12/2023
ট্রেনের মধ্যে ম্যাজিক দেখুন
দীঘা থেকে হাওড়া আসার সময় ট্রেনের মধ্যে
This is programming website. Many questions with answer there.
16/12/2023
ট্রেনের মধ্যে ম্যাজিক দেখুন
দীঘা থেকে হাওড়া আসার সময় ট্রেনের মধ্যে
Binary MLM Software : $500USD
Contact me on whatsApp for demo: +91 74793 52867
Binary MLM Software : 35k
Ecommerce with MLM repurchase software : 50k
Ecommerce website : 20k
Ecommerce with vendor system : 40k
Blog Management system : 15k
Personal portfolio : 15k
Customer relationship management (CRM) : 30k
Contact me on whatsApp : +91 74793 52867
21/06/2023
C programming to implement stack using array
C programming to implement stack using array – Togle C ProgrammingC programming to implement stack using array Tamal Naskar2 months ago2 months ago013 mins Implementation stack using array means static memory allocation in C programming. I have already discussed arrays in my previous blogs. Again I’m showing below int arr_a[size_of _array], size;Whe...
21/06/2023
C programming to implement linear search
C programming to implement linear search – Togle C ProgrammingC programming to implement linear search Tamal Naskar2 months ago2 months ago04 mins Linear search is a simple searching algorithm, in this algorithm you have to check from array 0 position to array last position. Linear search algorithm : Let arr_a[] = {5,4,6,3,7,2,8,1,9} and if your ...
21/06/2023
C programming to implement binary search
C programming to implement binary search – Togle C ProgrammingC programming to implement binary search Tamal Naskar2 months ago2 months ago010 mins Binary search means, you will search an element of an array by using low time complexity. To find an element you don’t have to check all elements of the array, you just need to check a maximum of 50%...
21/06/2023
C programming to implement selection sort
C programming to implement selection sort – Togle C ProgrammingC programming to implement selection sort Tamal Naskar2 months ago2 months ago05 mins Selection sort is a compare sorting algorithm, which compares one element with all elements. After checking all elements of each other, all elements are set in their proper place by this algorithm. Bef...
21/06/2023
C programming bubble sort call by reference
C programming bubble sort call by reference – Togle C ProgrammingC programming bubble sort call by reference Tamal Naskar2 months ago2 months ago04 mins Bubble sort using call by reference means, you have to bubble sort an array by using call by reference. In my previous example I have discussed the bubble sort algorithm. Here I’ll just discuss how...
21/06/2023
C programming bubble sort using pointers
C programming bubble sort using pointers – Togle C ProgrammingC programming bubble sort using pointers Tamal Naskar2 months ago2 months ago05 mins Bubble sort using pointer means, you have to bubble sort an array by using pointer variables. In my previous example I had discussed the bubble sort algorithm. Here I’ll just discuss how to use a poin...
21/06/2023
C programming bubble sort descending order
C programming bubble sort descending order – Togle C ProgrammingC programming bubble sort descending order Tamal Naskar2 months ago2 months ago07 mins Bubble sort ascending order means you have to sort an array from a small number to a bigger number by using a bubble sort algorithm. In this example I have declared an array ‘arr_a’ with some valu...
21/06/2023
C programming bubble sort ascending order
C programming bubble sort ascending order – Togle C ProgrammingC programming bubble sort ascending order Tamal Naskar2 months ago2 months ago07 mins Bubble sort ascending order means you have to sort an array from a small number to a bigger number by using a bubble sort algorithm. In this example I have declared an array ‘arr_a’ with some value...
21/06/2023
C programming to reverse a number
C programming to reverse a number – Togle C ProgrammingC programming to reverse a number Tamal Naskar2 months ago2 months ago02 mins Reverse a number means, number will be showing from last digit to first digit. For example, if any number a = 123456789; then the reverse of a will be a = 987654321. Example 1 : Here I have initialized variab...