Write a program to help them understand the American temperature readings easier, based on their indian way of understandings
Computers represent color by combining the sub-colors red, green, and blue (rgb). Each sub-color's value can range from 0 to 255. Thus (255, 0, 0) is bright red, (130, 0, 130) is a medium purple, (0, 0, 0) is black, (255, 255, 255) is white, and (40, 40, 40) is a dark gray. (130, 50, 130) is a faded purple, due to the (50, 50, 50) gray part. (In other words, equal amounts of red, green, blue yield gray).
Given values for red, green, and blue, remove the gray part.
a. Write a C program to implement a singly linked list. The list should store student records i.e. -- name, rollno. , year of joining and enrolled academic program.
b. Reimplement (a) but with a doubly linked list.
c. Implement stack and queue using linked list.
Write a C program to Create an array of (void * -type) pointers of length 5. Each of these pointers should be pointing to individual functions that perform operations like addition, subtraction, division, multiplication, exponentiation.
add(){ sub(){ mul(){ div(){ exp(){
} } } } }
These functions could take arguments just like regular functions.
Write a C program the `cp’ program that takes arguments as source and destination
filenames and copies the source to the destination. You need to use the functions fread
and fwrite. Note that the file may or may not be in text format.
Using of the function fread and fwrite is must, please solve using these two functions.
Write a C programm to Store a 256-bit unsigned integer number on a 32 byte character array. Add two such 256-bit numbers and print the result.
Create any one game using data structure in C program
Take a list of elements that contains both characters and numbers. Using any sorting algorithm sort the list such that the characters are in alphabetical order and the numbers are in descending order. However, retain the position of numbers and characters. For example: Input: b,2,1,c,3,a. Output: a,3,2,b,1,c.