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 24 / 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 programing please ;D Write a program that prompts the user to enter a series o
C programing please ;D Write a program that prompts the user to enter a series of diameters and a height to calculate the volume of a parabolic cone. The equation for a parabolic …
C programing. Maze Traversal: The following grid is an array representation of a
C programing. Maze Traversal: The following grid is an array representation of a maze. The ‘#’ symbol represents the walls of the maze, and the period (.) represents squares in th…
C programming ! - implement fgets instead scanf(\"%s\",&new_node->car_name); int
C programming ! - implement fgets instead scanf("%s",&new_node->car_name); into my program. Source code: #include<stdio.h> #include<stdlib.h> struct node { char…
C programming #include The first part of this lab is to write a progra
C programming #include <stdio.h> The first part of this lab is to write a program, word.c, which rea file, getty.txt, and displays each word on a line by itself. A wordma an…
C programming #include #include void read(struct Employee *e
C programming #include<stdio.h> #include <stdlib.h> void read(struct Employee *e); struct Employee { int id; int age; }; int main(){ struct Employee e; read(&e); }…
C programming (Craps Game Modification) Modify the craps program of 5.14 to allo
C programming (Craps Game Modification) Modify the craps program of 5.14 to allow wagering. Package as a function the portion of the program that runs one game of craps. Initializ…
C programming (not C++) In this lab, we will create an application which allows
C programming (not C++) In this lab, we will create an application which allows the user to build a sorted list of strings. The program will perform the following actions: 1. Prom…
C programming (not c++) This programs input is a series of words. All words cons
C programming (not c++) This programs input is a series of words. All words consist of only lowercase letters(a-z), no uppercase letters or digits or punctuation or other special …
C programming - Convert the two methods below to be defined recursively. long bi
C programming - Convert the two methods below to be defined recursively. long binaryToDecimal(char s[]) {    int n = strlen(s);    long ans = 0, t=1;    int i=0;    for(i=n-1; i&g…
C programming - how does this recursive function work? For example, when the fun
C programming - how does this recursive function work? For example, when the function gets full path name "/home/ysweng/hw/hw0/main.cpp" and passes it back to its parameter. The p…
C programming . In C please add a function to this code so that it will sort by
C programming . In C please add a function to this code so that it will sort by age. #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> #define PAU…
C programming 1) 2) 3) Write a conditional expression that returns a value of tr
C programming 1) 2) 3) Write a conditional expression that returns a value of true if the quantity B'-4AC is less than zero Write a conditional expression that returns a value of …
C programming 1- question 2- is my code what I want is to edit my code so it can
C programming 1- question 2- is my code what I want is to edit my code so it can be compiled Problem A: Write a function that has one integer parameter and returns 1 if the given …
C programming 1. Circle the correct choices for the following questions. a. Whic
C programming 1. Circle the correct choices for the following questions. a. Which of the following are examples of embedded systems? (Circle all that apply.) v. Supercomputer i. M…
C programming 1. Create a new project in VS as you did in Lab 01, name it Lab03.
C programming 1. Create a new project in VS as you did in Lab 01, name it Lab03. 2. As before, add the file Lab03.c and in the main() function: a. Declare variables to store three…
C programming 1.a If int n1 = 5, and int d1 = 2, what are the results of the fol
C programming 1.a If int n1 = 5, and int d1 = 2, what are the results of the following operations? (assume double frac)       a. frac = (double)n1/(double)d1;       b. frac = (dou…
C programming 4. What is the NOT principle? Why is it important? 6. List the adv
C programming 4. What is the NOT principle? Why is it important? 6. List the advantages and disadvantages of cohesive functions. 7. If given the choice between writing your own fu…
C programming 9. An epidemic of a new strain of flu (i.e., one for which a vacci
C programming 9. An epidemic of a new strain of flu (i.e., one for which a vaccine is not available) begins with a single case on a college campus of 40,000 faculty, staff, and st…
C programming : have a list of functions to implements but getting stuck in tryi
C programming : have a list of functions to implements but getting stuck in trying to develop them. They are: Append(sentence) - a string including optional punctuation marks is s…
C programming >> help please! 2. Create a struct TempData which has an integer r
C programming >> help please! 2. Create a struct TempData which has an integer representing time and a double field representing temperature. 3. Create a function that takes…
C programming A palindrome is a word that reads the same forward as it does back
C programming A palindrome is a word that reads the same forward as it does backward. An example of a valid palindrome is the word “racecar”. An example of a word that is not a pa…
C programming A palindrome is a word that reads the same forward as it does back
C programming A palindrome is a word that reads the same forward as it does backward. An example of a valid palindrome is the word “racecar”. An example of a word that is not a pa…
C programming All programs must be written in ANSI C, compiled with the followin
C programming All programs must be written in ANSI C, compiled with the following options: -O3 -Wall -Wextra -std=c99, and display no errors or warnings. Do not submit any executa…
C programming Assume the + operator is not available. Write a program (addition.
C programming Assume the + operator is not available. Write a program (addition.c) that takes two numbers as input and display the addition of them. The program should include a f…
C programming C programming C programming Midterm (graded out of 100 points) Pro
C programming C programming C programming Midterm (graded out of 100 points) Problem 1: Write a program which can accept binary numbers and certain operations to calculate the res…
C programming C style file I/O and compute Fibonacci numbers There is a main fun
C programming C style file I/O and compute Fibonacci numbers There is a main function, and you should complete thoes part: fill in fibonacciRecursive() with a RECURSIVE function w…
C programming C style file IO and compute Fibonacci numbers There is a main func
C programming C style file IO and compute Fibonacci numbers There is a main function, and you should complete thoes part: main function: #include <stdlib.h> #include <std…
C programming Capturing of Random Numeric Inputs Process (assigned to Programmer
C programming Capturing of Random Numeric Inputs Process (assigned to Programmer B): For each of the “playing with numbers” selections, a user must enter in a collection of number…
C programming Chapter 6 : page 266, 268, exercise 6.6 & 6.12 6.6 Fill in the bla
C programming Chapter 6: page 266, 268, exercise 6.6 & 6.12 6.6 Fill in the blanks in each of the following: a. C stores lists of values in           . b.The elements of an ar…
C programming Complex Number Calculator (35 points) Create a complex number calc
C programming Complex Number Calculator (35 points) Create a complex number calculator (For a brief overview on complex numbers, take a look at http://mathworld. wolfram.com/Compl…
C programming Complex Number Calculator (35 points) Create a complex number calc
C programming Complex Number Calculator (35 points) Create a complex number calculator (For a brief overview on complex numbers, take a look at http://mathworld. wolfram.com/Compl…
C programming Consider the following struct definition, struct player { int age;
C programming Consider the following struct definition, struct player {     int age;     int wickets; }; typedef struct player player_t; In this task you are required to implement…
C programming Design, code, and test a C program to mergesort a set of intervals
C programming Design, code, and test a C program to mergesort a set of intervals of positive rational numbers. The first line of the input will be n, the number of intervals in th…
C programming Go through this program. Trace the code for at least 5 iteration a
C programming Go through this program. Trace the code for at least 5 iteration and give your comment on what this is doing ? #include <stdio.h> #include <string.h> #in…
C programming Homework Help----- Please belp finish questions 3-6. I have provid
C programming Homework Help----- Please belp finish questions 3-6. I have provided my source code for earlier questions that needs to be built upon. Thank you Directions: Here is …
C programming Homework Help----- Please belp finish questions 3-6. I have provid
C programming Homework Help----- Please belp finish questions 3-6. I have provided my source code for earlier questions that needs to be built upon. Thank you Directions: Here is …
C programming I cannot get the part with saving a file to work... I got everythi
C programming I cannot get the part with saving a file to work... I got everything else... how would you implement a save file function on its own? and do that part??? nvertD Bin.…
C programming I could use some clear instructions please 3. Create a program nam
C programming I could use some clear instructions please 3. Create a program named DynamicList. Create a data structure for classes at UCF. It should have the class identifier suc…
C programming I have this program close to be done but I am stuck with a constan
C programming I have this program close to be done but I am stuck with a constant loop inside main. Please help, with warnings as well. attatched is the following code. please act…
C programming I need to write the header corresponding to the function that is c
C programming I need to write the header corresponding to the function that is carried out by each one of the foillowing tasks. And yup, only the header though, I'll try to implem…
C programming Imagine a world of organisms living in a two-dimensional cell grid
C programming Imagine a world of organisms living in a two-dimensional cell grid of size n × m. Each organism can only occupy a single cell. Each cell, except those at the boundar…
C programming Implement an interactive tic tac toe game where player 2 is automa
C programming Implement an interactive tic tac toe game where player 2 is automated by the computer. the game starts by printing an empty board. Each player takes turns and adds a…
C programming Implement an interactive tic tac toe game. The game starts by prin
C programming Implement an interactive tic tac toe game. The game starts by printing an empty board. Each player takes turns and adds an ’X’ or an ’O’ to the appropriate location.…
C programming Introduction Write a C program called search.c. Implement two sear
C programming Introduction Write a C program called search.c. Implement two search functions which determine the location (index) of value s in an ordered array (ascending order) …
C programming Measurement analysis Using computer programs for measurement of da
C programming Measurement analysis Using computer programs for measurement of data collection and analysis is very common. You should write a well-structured program where you can…
C programming Numbers Process 2 (assigned to Programmer B) Process two for “play
C programming Numbers Process 2 (assigned to Programmer B) Process two for “playing with numbers” is to take the collection of numbers entered by the user and to generate the aver…
C programming Please take care of all the conditions. I don\'t mind if it takes
C programming Please take care of all the conditions. I don't mind if it takes you more time. Thanks for the help mbostwick30phyAdj3 Phome/class/fa 112017/2017 /homework ./hwba. e…
C programming Prints out all of the required information for all assignments (se
C programming Prints out all of the required information for all assignments (see style sheet) Your program should have at least 4 functions (including main) Your program should a…
C programming Problem In this assignment you will simulate bank activity by runn
C programming Problem In this assignment you will simulate bank activity by running basic banking services on a given number of bank accounts. The services involved are represente…
C programming Problem Write a function that computes the value of the n-th eleme
C programming Problem Write a function that computes the value of the n-th element of the Fibonacci sequence. The function needs to call itself, in order to compute the result, i.…