Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Browse C

Alphabetical listing with fast deep pagination.
81169 items • Page 11 / 1624

All 0-9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
C Programming & Data Structures: Need help ASAP on spellchecker code for a hasht
C Programming & Data Structures: Need help ASAP on spellchecker code for a hashtable! The code compiles but there is an issue the code that compares levenshtein values and pla…
C Programming & Data Structures: Need help fixing code. File MUST be able to run
C Programming & Data Structures: Need help fixing code. File MUST be able to run as a .c file (NOT .cpp) My program is to implement a stack using two instances of queue data s…
C Programming *Notice: I can only edit the part where it says in /* Your solutio
C Programming *Notice: I can only edit the part where it says in /* Your solution goes here */ the other part of the code i can't touch it please the solution should be inside tha…
C Programming *Notice: I can only edit the part where it says in /* Your solutio
C Programming *Notice: I can only edit the part where it says in /* Your solution goes here */ the other part of the code i can't touch it please the solution should be inside tha…
C Programming - Floating point numbers The ifloat .h file includes the Instructi
C Programming - Floating point numbers The ifloat.h file includes the Instructions/ declarations Code to be completed is in ifloat.c do not modify ifloat.h Below is the iFloat.c f…
C Programming - Game of UNO I need to code the card game UNO in C. I don\'t know
C Programming - Game of UNO I need to code the card game UNO in C. I don't know how to set up the deck for the game. I am told in my project rubric to have a "an UNO deck of cards…
C Programming - HOW TO FIX THIS? void selection_sort(int a[], int n){ int *large
C Programming - HOW TO FIX THIS? void selection_sort(int a[], int n){    int *largest = 0;       if(n == 1){        return;    }       largest = find_largest(a, n);       if(*larg…
C Programming /* This program will be called with one command line argument that
C Programming /* This program will be called with one command line argument that contains a string followed by an asterisk and an integer. Print out the string as many time as ind…
C Programming 1. Create an array of 100 random numbers in the range of 1-999, wr
C Programming 1. Create an array of 100 random numbers in the range of 1-999, write a function for each of the following processes. In building the array, if 3 or 7 evenly divide …
C Programming 1. Create an array of 100 random numbers in the range of 1-999, wr
C Programming 1. Create an array of 100 random numbers in the range of 1-999, write a function for each of the following processes. In building the array, if 3 or 7 evenly divide …
C Programming 1. Create an array of 100 random numbers in the range of 1…999, wr
C Programming 1. Create an array of 100 random numbers in the range of 1…999, write a function for each of the following processes. In building the array, if 3 or 7 evenly divide …
C Programming 1. Declare an array availablePizzas of 3 PizzaIngredients elements
C Programming 1. Declare an array availablePizzas of 3 PizzaIngredients elements. #include <stdio.h> #include <string.h> typedef struct PizzaIngredients_struct { char …
C Programming 3. Create a program named DynamicList . Create a data structure fo
C Programming 3. Create a program named DynamicList. Create a data structure for classes at UCF. It should have the class identifier such as COP3223 and other information such as …
C Programming 5. [4 Points] Multiple Choice: Circle all answers that apply I. Wh
C Programming 5. [4 Points] Multiple Choice: Circle all answers that apply I. Which of the following accesses a variable in structure b? A. b->var B. b.var; C. *b.var; D. (*b).…
C Programming : The citizens of the nation Atlantis will soon be taking to the p
C Programming : The citizens of the nation Atlantis will soon be taking to the polls to elect their next government. 7 parties (named using the first 7 letters of the alphabet A-G…
C Programming A flower shop sells various arrangements of a dozen flowers (roses
C Programming A flower shop sells various arrangements of a dozen flowers (roses, lilies, daisies) in two colors each (red or white) with a choice of bouquet or vase. You are give…
C Programming Assignment 5 For Loops Due Wednesday, October 11,2017 For each of
C Programming Assignment 5 For Loops Due Wednesday, October 11,2017 For each of the programs assigned below, submit a copy of the source code (.c ) saved as an electronic attachme…
C Programming Assignment 5 For Loops Due Wednesday, October 11,2017 For each of
C Programming Assignment 5 For Loops Due Wednesday, October 11,2017 For each of the programs assigned below, submit a copy of the source code (.c ) saved as an electronic attachme…
C Programming Assignment Objectives: To gain experience in dynamic memory alloca
C Programming Assignment Objectives: To gain experience in dynamic memory allocation and file processing Assignment: Write a modularized program that’s reads a file with unknown n…
C Programming Assignment Objectives: To gain experience in dynamic memory alloca
C Programming Assignment Objectives: To gain experience in dynamic memory allocation and file processing Assignment: Write a modularized program that’s reads a file with unknown n…
C Programming Assignment: Write a C program that allows the user to make some si
C Programming Assignment: Write a C program that allows the user to make some simple banking transactions. The program should first prompt the user to enter the current balance of…
C Programming Assignment: Write a program that will accept a number of arguments
C Programming Assignment: Write a program that will accept a number of arguments from the command-line – between 1 and 7, inclusive – each a unique integer between 0-9. The progra…
C Programming BASE CODE: linkedlist.h #ifndef CT331_ASSIGNMENT_LINKED_LIST #defi
C Programming BASE CODE: linkedlist.h #ifndef CT331_ASSIGNMENT_LINKED_LIST #define CT331_ASSIGNMENT_LINKED_LIST typedef struct listElementStruct listElement; //Creates a new linke…
C Programming Energy can be measured in several different scales: calories (c),
C Programming Energy can be measured in several different scales: calories (c), joules (J), ergs (erg) and foot-pound force (f t lbf) among others. To convert between these scales…
C Programming Exercise 5 - Library simulation Write a program in C that simulate
C Programming Exercise 5 - Library simulation Write a program in C that simulates a book library database. We want to have the following actions e Insert a new book record. Print …
C Programming For the following problem define a struct queueNode with data of t
C Programming For the following problem define a struct queueNode with data of type char *. Implement the following operations for your queue data structure: 1.    isEmpty()
C Programming Gas Mileage . Drivers are concerned with the mileage obtained by t
C Programming Gas Mileage . Drivers are concerned with the mileage obtained by their automobiles. One driver has kept track of several tankfuls of gasoline by recording miles driv…
C Programming Given that the mathematical formula for a Factorial calculation (w
C Programming Given that the mathematical formula for a Factorial calculation (written n!) is: n! = n * (n - 10) * (n - 2) * (n - 3) * ..*1 where n is a positive integer (i) Write…
C Programming Gregorian Calendar Month Display– Zeller’s Congruence Overview In
C Programming Gregorian Calendar Month Display– Zeller’s Congruence Overview In this assignment, the student will write a C program that graphically displays an accurate calendar …
C Programming Gregorian Calendar Month Display– Zeller’s Congruence Overview In
C Programming Gregorian Calendar Month Display– Zeller’s Congruence Overview In this assignment, the student will write a C program that graphically displays an accurate calendar …
C Programming HOMEWORK HELP!!! I want to ask a user: \"How many sentences you wi
C Programming HOMEWORK HELP!!! I want to ask a user: "How many sentences you wish to enter" but I want the max to be 10, or produce error if number is higher than 10 and try again…
C Programming Hello, i have this code and when i try to run ir it appears in mi
C Programming Hello, i have this code and when i try to run ir it appears in mi screen stream!=Null in line 29. I dont see what is wrong in line 29, can someone maybe help me than…
C Programming Help I am writing a program that will ask a user to Enter Amount o
C Programming Help I am writing a program that will ask a user to Enter Amount of Sentences The user will enter no more than 100 characters for every sentence After I will convert…
C Programming Help Part of my code written below. Evidently, it is totally ineff
C Programming Help Part of my code written below. Evidently, it is totally ineffecient and doesn't work correclty anyway. I need someone to show me how to input the day and month …
C Programming Help! I have to read a file that acts as a user input for my progr
C Programming Help! I have to read a file that acts as a user input for my program, andI'm trying to read a string of numbers from a file, and read them one by one in my program. …
C Programming Homework Write a C program project5.c that operates as described b
C Programming Homework Write a C program project5.c that operates as described below Your program should accept three command line arguments. Argument 1 is the name of an input fi…
C Programming How do I write a program that determines your class grade when tak
C Programming How do I write a program that determines your class grade when taking into account test scores, hw scores, labs, quizzes, and projects. Some of these are weighted di…
C Programming How do I write a program that determines your class grade when tak
C Programming How do I write a program that determines your class grade when taking into account test scores, hw scores, labs, quizzes, and projects. Some of these are weighted di…
C Programming I am trying to get a program that will create a temporary struct t
C Programming I am trying to get a program that will create a temporary struct that reads information from a command line argument file into a temporary struct and then passes tha…
C Programming I was given this code to display the following as the output but i
C Programming I was given this code to display the following as the output but it does not seem to work. what is wrong? or can someone guide me through the steps? thanks! makes a …
C Programming In C, (not C++) write a \"HelloWorld\" program. Use the nano edito
C Programming In C, (not C++) write a "HelloWorld" program. Use the nano editor (or gedit) program to create the source file in your home directory. To compile the source file: To…
C Programming In your home directory, create EncDec; Write 1 program that perfor
C Programming In your home directory, create EncDec; Write 1 program that performs the following tasks    b) Encode & decode        b1) shift for lowercase & digits       …
C Programming Language Goals • Implement a switch statement • Convert between in
C Programming Language Goals • Implement a switch statement • Convert between integer and floating point math • Implement a do/while loop • Use character input and logical operato…
C Programming Language Goals • Practice with creating and using arrays Tasks 1.
C Programming Language Goals • Practice with creating and using arrays Tasks 1. Write a program to count how many pets the students have in a given class: a. The largest number of…
C Programming Language Goals • Practice with creating and using arrays • Practic
C Programming Language Goals • Practice with creating and using arrays • Practice with generating random numbers • Use an array to tally data Tasks 1. Write a program to tally how…
C Programming Language Only. I am really stuck on this, and a good response will
C Programming Language Only. I am really stuck on this, and a good response will certainly get a thumbs up! (1) Define structure with tag name bank_book. The structure is to consi…
C Programming Lanuage (C++): Write a program for Cody’s Car Care Shop that shows
C Programming Lanuage (C++): Write a program for Cody’s Car Care Shop that shows a user a list of available services: 1. oil change $25.00 2. tire rotation $22.00 3. battery check…
C Programming Lanuage(C++) Write a program for Cody’s Car Care Shop that shows a
C Programming Lanuage(C++) Write a program for Cody’s Car Care Shop that shows a user a list of available services: 1. oil change $25.00 2. tire rotation $22.00 3. battery check $…
C Programming Multiple Choice Questions 3. In C, if an array is declared as doub
C Programming Multiple Choice Questions 3. In C, if an array is declared as double array [261 i, how many numbers can you put in it? a) 50 d) as many as you need b) 25 c) 24 e) no…
C Programming My program is not passing tests on an online grader. Any help conc
C Programming My program is not passing tests on an online grader. Any help concerning what I am doing wrong is appreciated! I have included my homework prompt, .c and .h file, an…