This code has to copy one array to another via void copy function. But I don't understand why it doesn't work. #include <stdio.h> void copy(int func_arra
I have a project that I'm working on for a Systems Programming course. I'm building off of my professor's code. (Please don't mind her lack of labelling, etc. -
In short, I should have " 1 2 3 4 5 6 7 8 9 10 ". When executed in CodeBlocks instead of 0 i am getting random numbers. But When compiling using onli
double x; size_t n; double precision; double high = x < 1.0 ? 1.0 : x; double min = 0.0; double unknown = //idk?? double eps = 1e-6; double multiply(doub
double x; size_t n; double precision; double high = x < 1.0 ? 1.0 : x; double min = 0.0; double unknown = //idk?? double eps = 1e-6; double multiply(doub
I am trying to write a c code to implement a tls socket using openssl. The server has a certificate chain with 4 certificates: leaf certificate - intermediate1
I'm kind of a beginner in c, and I would like to know if there's a way of making a package like in python, for example: . ├── main.py └&
I am making a snakes and ladders game in C using a LinkedList, I have a square struct that represents squares on the board. I need to add snakes and ladder that
To get in context, i am making a GUI application that based on a input command through a GtkEntry like ls it would pop up a window with the respective files in
Hey, so I been stuck on the cs50 pst4 for a while now, specifically on blur. The goal is to create a filter which blurs the image by changing each pixel to the
I'm having problems converting negative numbers, from decimal base to hexadecimal base, with the following function: #include <stdio.h> int main() {
I am trying to use the tcrpyto API bundled with Intel SGX in order to generate Public/Private key pair and encrypt information with it. The public Key seems to
I am trying to find the smallest missing element of an array using function check, which has two arguments (n and array A). I can't understand
i have a some simple lines of code in C and wanted to disassemble it: #include <stdio.h> int main(){ int i=42; } After compiling it and starting gdb, i
I have recently started learning C in university and my task today was to write a program that calculates the average price of products in an array of structure
Say, I need to sort some scores from classOne, classTwo, and classThree. Each class has their own file, named as stated previously. I need to
I'm trying to learn GTK3, but the documentation is problematic at best. The most frustrating problem comes from using g_application_run. It seems to create a
I am trying to understand how can I write tasks for VxWorks. I have VxWorks on a board that is mounted on a development board. I can access the board through Pu
i have this typedef of two dinantial array, and strust the keep his adress typedef double mat[MAT_SIZE][MAT_SIZE]; typedef struct matList { char *name;
Whilst trying to compile my C project with GCC, I keep getting an error that goes something like this: main.c:2:10: fatal error: ./include/windows.h: No such fi