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 more1 328
Subscribers
+224 hours
No data7 days
No data30 days
Posts Archive
1 328
// -------------- 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;
}
1 328
Hi beginners π
Here are some of the basic algorithms you must know
πππ
1 328
π¨π¨π¨π¨π¨ Hi π₯
The ai assistant project has been CANCELED
The openai API Key is to expensive and money consumming
1 328
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 ???
1 328
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.
1 328
Hi beginners π
Here is a c programming tutorial for you π₯
Hope you'll enjoy and like and Share for more interesting posts ππ₯
1 328
Hi guys here is the c++ tutorial for beginners. Very nice Book
Well explain concepts
Share for more interesting posts π
1 328
hi guys here is the link ππΌππΌ https://github.com/NodemBorel/Advance-ShoppingCart-Vuex-Routing
1 328
hi guys this is a project i did recently "vue.js add to cart with recommendation system" π
1 328
Hi friends π here is a pdf tutorial for PHP beginners πβ€οΈ
Share the post for more interesting posts π
#coding #programming #webdevelopment
1 328
Hi friends π i'm back
Share the post for more interesting posts ππ₯
1 328
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
