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 25 / 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 Problem: In this program you will be mimicking a game of Battleshi
C programming Problem: In this program you will be mimicking a game of Battleship. Your game board is a line of 10 slots. You have to implement 3 methods. The following methods mu…
C programming Questions 4-6. Consider this function: int solveEquation (double a
C programming Questions 4-6. Consider this function: int solveEquation (double a, double b, double *px){*px = 0: if (a != 0){*px = -b/a; return 1;} else {double a1; scanf("%lf", &…
C programming String Search Develop a C program that searches a le for a given s
C programming String Search Develop a C program that searches a le for a given string. Your program should • Ask the user to enter the le to be searched. • Ask the user to enter t…
C programming The instruction to complete the code is on the picture This is the
C programming The instruction to complete the code is on the picture This is the code that need to be completed #include<stdio.h> #include<stdlib.h> #include<string…
C programming The program will require the following structure: struct _data { c
C programming The program will require the following structure: struct _data { char *name; long number; }; The program will require command line arguments: int main(int argv, char…
C programming The purpose of this assignment is to give you some practice using
C programming The purpose of this assignment is to give you some practice using characters and Strings. You will create a program, cipher.c, which will encode a message by shiftin…
C programming Upon starting, and immediately following any complete action, the
C programming Upon starting, and immediately following any complete action, the program displays a menu, described as follows: Program prints "Make a selection: (a)dd, (r)emove, (…
C programming Use the following file: Tester.c #include int multiples(
C programming Use the following file: Tester.c #include <stdio.h> int multiples(int a[], int length); main() {    int a1[] = { 1, 2, 3, 4, 5 };    int a2[] = { 1, 4, 1, 5, 9…
C programming We would like to modify the program to tell us the size of the big
C programming We would like to modify the program to tell us the size of the biggest and smallest words and to count four letter words (all words that have exactly 4 letters) in t…
C programming Write a C program called div.cthat implements division on two unsi
C programming Write a C program called div.cthat implements division on two unsigned integers. 1.Name your executable div.out 2.You cannot use division in your solution 3.Argument…
C programming Write a C program called div.cthat implements division on two unsi
C programming Write a C program called div.cthat implements division on two unsigned integers. 1.Name your executable div.out 2.You cannot use division in your solution 3.Argument…
C programming Write a function definition for a user-defined function that calcu
C programming Write a function definition for a user-defined function that calculates the (floating-point double) mean of a specified column in a 2-D array that has NROWS rows and…
C programming Write a pair of client and server programs in that allow the clien
C programming Write a pair of client and server programs in that allow the client to download a file from the server. First, the user on the server's side starts the server as fol…
C programming Write a program that * Asks the user for number of questions in th
C programming Write a program that * Asks the user for number of questions in the quiz. * Generates a quiz which has as many questions as the user entered in (1) above. * Allocate…
C programming Write a program that will open a data file containing inventory in
C programming Write a program that will open a data file containing inventory information and print a formatted report from the data. 1) Get the name of the data file from the use…
C programming Write a program that will read two floating point numbers (the fir
C programming Write a program that will read two floating point numbers (the first read into a variable called first and the second read into a variable called second) and then ca…
C programming You are the head programmer at Cool School University. You are tas
C programming You are the head programmer at Cool School University. You are tasked with writing a program to take input for a student and print the cost of attending classes this…
C programming Your program reads from two files and prints out the text message
C programming Your program reads from two files and prints out the text message conversations in chronological order (from oldest to newest message sent/received). The required fo…
C programming ^^ Project Title: Handling students’ grades Write a menu driven pr
C programming ^^ Project Title: Handling students’ grades Write a menu driven program with the following options: Before start showing the menu options, you have to make a file wh…
C programming anwer the following questions The following program is supposed to
C programming anwer the following questions The following program is supposed to print the word "SET" followed by the difference, as both int and float, between the first and seco…
C programming array question 1. Log in to Linux. Make a new directory for this l
C programming array question 1. Log in to Linux. Make a new directory for this lab called Lab2. Place all of the files you create for this lab assignment in that directory 2. Crea…
C programming assignment, Sorting And Searching Assignment 1- The program specif
C programming assignment, Sorting And Searching Assignment 1- The program specifications. YOU MUST NOT Use global variables YOU MUST NOT Use the word goto YOU MUST NOT Use the bre…
C programming assignment. The assignment should: Read in one filename as input i
C programming assignment. The assignment should: Read in one filename as input in the command line. The file is going to represent an input to the program. Do not hard-code any fi…
C programming assignment: Assignment Details: You are supposed to write a small
C programming assignment: Assignment Details: You are supposed to write a small program, which takes two arguments on the command line: the name of a source file and the name of a…
C programming assignment: Write this in C only. You can also email files to star
C programming assignment: Write this in C only. You can also email files to starship21[at]g mail[dot]com Abstract This is the first in a series of projects that will involve sorti…
C programming brain teaser . I have the following function and as you can imagin
C programming brain teaser. I have the following function and as you can imagine compiling it with the file below it reads the data file and ignores the comment. Now I want to wri…
C programming can you guys help me?! Write a program that prompts the user to in
C programming can you guys help me?! Write a program that prompts the user to input 3 integer values into the computer. Write a function that re-orders the values in the three int…
C programming code #define MAX_LEN 80 typedef struct {char *title; int duration;
C programming code #define MAX_LEN 80 typedef struct {char *title; int duration;} Song typedef struct {Song* all_songs;/* array of songs*/int number_of_songs; char album_name [MAX…
C programming code that counts the number of digits in strings and sums the char
C programming code that counts the number of digits in strings and sums the characters. Problem 2 A function that calls another function, which in turn calls the original function…
C programming complete the code for the removeItem() function in the program bel
C programming complete the code for the removeItem() function in the program below. Be sure to update both the prev and next pointers where necessary. #include <stdio.h> str…
C programming for a parking manager. I need help fixing and finishing my program
C programming for a parking manager. I need help fixing and finishing my program with the following function: (thanks for the help) void printVehicle(vehicle* v) - prints all info…
C programming help Creat a C program : A group of scientists are testing a new d
C programming help Creat a C program : A group of scientists are testing a new drug to evaluate its effect on cancer cells. Their tests involved adding the drug to a variety of sa…
C programming help Please! I need a tutor to help/explian to me to understading
C programming help Please! I need a tutor to help/explian to me to understading : what is the values for the elements of the x array that are printed out by the program show below…
C programming help Write a program that reads a list of integers from the keyboa
C programming help Write a program that reads a list of integers from the keyboard and creates the following information: a. Finds and prints the sum and the average of the intege…
C programming help please (not c++) I was given this question to write a program
C programming help please (not c++) I was given this question to write a program for and I don't understand nested loops. Can someone please show me what the code is supposed to l…
C programming help. 1. Overview Foe tis assigament you will write a program that
C programming help. 1. Overview Foe tis assigament you will write a program that will determine the sqaare root of a number entered by then The epts used in this progra" include l…
C programming lab. Please write a complete C program INSTRUCTIONS THE LANGUAGE O
C programming lab. Please write a complete C program INSTRUCTIONS THE LANGUAGE OF TUT The tut language is a simple encoded language where words are spelled out and the letters "ut…
C programming language Objectives: This lab is designed to reinforce programming
C programming language Objectives: This lab is designed to reinforce programming concepts using arrays, passing arrays to functions, and creating reusable functions with header fi…
C programming language Please provide image of output Thank you! A binary gap wi
C programming language Please provide image of output Thank you! A binary gap within a positive integer N is any maximal sequence of consecutive zeros that is surrounded by ones a…
C programming language Programming 2 Spring 2011 4. Write a function that receiv
C programming language Programming 2 Spring 2011 4. Write a function that receives two parameters: the pointer to the first element of an arr av integers, and the number of elemen…
C programming language Programming 2 Spring 2018 2 Make a structure Student name
C programming language Programming 2 Spring 2018 2 Make a structure Student name, last name,mdrm points, final points Write a code to create a student, enter and print data of a s…
C programming language help, I have displayed my code below. The program display
C programming language help, I have displayed my code below. The program displays a menu and if 1 is selected, the user then inputs some parameters. The menu is then displayed aga…
C programming language text: computer science a structured programming approach
C programming language text: computer science a structured programming approach using C, third edition ch: 1-3 Problem 1: Given the temperature in degrees Fahrenheit and the desir…
C programming language: In this program, you will read an input string from stdi
C programming language: In this program, you will read an input string from stdin, print it back to the user, and report if it is a palindrome. The string ends when whitespace is …
C programming language: In this program, you will read an integer from stdin, re
C programming language: In this program, you will read an integer from stdin, reverse it, and print if back to the user. Keep reading input until a newline is reached. 1. Input Ve…
C programming language: Program: In this program, you will read a string from st
C programming language: Program: In this program, you will read a string from stdin, store it in an array, and print it back to the user. Your program will also print the size of …
C programming language: Program: In this program, you will read a string from st
C programming language: Program: In this program, you will read a string from stdin, store it in an array, and print it back to the user. Your program will also print the size of …
C programming multiple choice Questions i just need the answers no explanations
C programming multiple choice Questions i just need the answers no explanations and a speedy response if possible thanks. Which of the following is true? Which of the following is…
C programming multiple choice Questions i just need the answers no explanations
C programming multiple choice Questions i just need the answers no explanations and a speedy response if possible Which of the following restricts the scope of a global variable t…
C programming multiple choice Questions i just need the answers no explanations
C programming multiple choice Questions i just need the answers no explanations and a speedy response if possible Preprocessor directives ________. begin with include are C statem…