I'm software engineer and I like the DeFi Technologies!
33 Followers
🔥 Hey! 🔥 What about link between Math and Programming? 🔥 Next function describe green curve below: #include <stdio.h> #include <math.h> float the_function(float x); int main() { float x = 16; printf("For x = %.1f the function give %.1f", x, the_function(x)); return 0; } float the_function(float x){ return -12*pow(x,2)+870*x+9600; }
https://warpcast.com/antohin/0xd78d9aab
Отличная книга для изучания языка Си! Great book for learn C-language! Subscribe https://warpcast.com/~/channel/catscode
#include <stdio.h> #include <stdlib.h> int main() { // We will use the following variable as a pointer to the array: int* ptr = NULL; // There we've allocated the memory for 2 array cells: ptr = (int*)malloc(2*sizeof(int)); // Next step: fill two cells with random numbers: ptr[0] = 15; ptr[1] = -8; // Finally, print the data from the array to the screen: printf("%d %d", ptr[0], ptr[1]); return 0; }