en
Feedback
Tech & AI Automation

Tech & AI Automation

Open in Telegram

Hello friends this Channel is for you tech and ai automation lovers 😁 #coding #programming #programmer #developers #developer #cprogramming #python #cpp #java #javascript #backenddeveloper #ai #automation #n8n

Show more
1 328
Subscribers
+224 hours
No data7 days
No data30 days
Posts Archive
// -------------- Code --------------- // C program for insertion sort #include <math.h> #include <stdio.h> /* Function to sort an array using insertion sort*/ void insertionSort(int arr[], int n) { int i, key, j; for (i = 1; i < n; i++) { key = arr[i]; j = i - 1; /* Move elements of arr[0..i-1], that are greater than key, to one position ahead of their current position */ while (j >= 0 && arr[j] > key) { arr[j + 1] = arr[j]; j = j - 1; } arr[j + 1] = key; } } // A utility function to print // an array of size n void printArray(int arr[], int n) { int i; for (i = 0; i < n; i++) printf("%d ", arr[i]); printf("\n"); } // Driver code int main() { int arr[] = {12, 11, 13, 5, 6}; int n = sizeof(arr) / sizeof(arr[0]); insertionSort(arr, n); printArray(arr, n); return 0; }

Insertion sort πŸ™‚πŸ”₯

Hi beginners πŸ™‚ Here are some of the basic algorithms you must know πŸ‘‡πŸ‘‡πŸ‘‡
Hi beginners πŸ™‚ Here are some of the basic algorithms you must know πŸ‘‡πŸ‘‡πŸ‘‡

🚨🚨🚨🚨🚨 Hi πŸ˜₯ The ai assistant project has been CANCELED The openai API Key is to expensive and money consumming

+7
Data structure and algorithm πŸ˜™πŸ”₯

Hi friends πŸ™‚ i'm planning to create an AI assistant that will specifically designed helpful, creative, and clever solutions to everyday problems and programming using openai API. Are you ready and willing that ???
Anonymous voting

For those of you who don't have access to chatgpt

Hi friends πŸ™‚ i'm planning to create an AI assistant that will specifically designed helpful, creative, and clever solutions to everyday problems and programming using openai API.

And If you have any problem of understanding just comment under 😌πŸ”₯

Hi beginners πŸ™‚ Here is a c programming tutorial for you πŸ”₯ Hope you'll enjoy and like and Share for more interesting posts 😌πŸ”₯

Hi guys check this πŸ˜ŒπŸ‘Œ

Hi guys here is the c++ tutorial for beginners. Very nice Book Well explain concepts Share for more interesting posts 😌

c++ tutorial for you guys πŸ˜‰πŸ‘‡πŸΌ

hi guys here is the link πŸ‘‡πŸΌπŸ‘‡πŸΌ https://github.com/NodemBorel/Advance-ShoppingCart-Vuex-Routing

source code is coming soon πŸ‘‡πŸΌπŸ‘‡πŸΌ

hi guys this is a project i did recently "vue.js add to cart with recommendation system" πŸ˜‰

Hi friends πŸ™‚ here is a pdf tutorial for PHP beginners πŸ™‚β€οΈ Share the post for more interesting posts 😌 #coding #programming #webdevelopment

Hi friends πŸ™‚ i'm back Share the post for more interesting posts 😌πŸ”₯
+5
Hi friends πŸ™‚ i'm back Share the post for more interesting posts 😌πŸ”₯

Hi friends πŸ™‚ Share the post for more interesting posts 😌

Hi guys this is a c programming to tutorial for you. This pdf really helped me πŸ₯² Share the post for more interesting posts 😌πŸ”₯ #programming #coding #webdevelopment