Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Recent content by mikexstiffler

  1. mikexstiffler

    How to change these arrays to Dynamic allocations

    //Stage D #include <stdio.h> #include <string.h> #include <stdbool.h> #include <stdlib.h> typedef enum { // declaring enum with assigning the prices as its integer constants Chicken = 15, Ham = 17, Vegie = 13 } BurgerTypes; typedef struct { //delcaring struct for burger details...
Back
Top Bottom