C

C

Explore our C programming domain filled with a wealth of articles! Discover tutorials, advanced techniques, code examples, and best practices to enhance your skills. Dive in and start coding with confidence today!

CF

C – Stack – Reverse Integers

An array of N integers is given as input. The program must reverse the integers using a stack. Fill in the missing lines of code to implement…
PythonF

Sort based on Weight

The program must accept N integers as the input. For each integer X, the program must find the sum of the weights based on the…
CF

C – Heap – BuildMaxHeap

An array of N integers is passed as input. Fill in the missing lines of code to implement the buildMaxHeap function to sort in…
CF

C – Linked List – Append

In a linked list, append operation adds an element to the list at the end. Fill in the missing lines of code to implement the append function…
CF

C – Heap – ExtractMax

An array of N integers is passed as input. Fill in the missing lines of code to implement the extractMax function to sort in…
CF

C – Structure Pointer – Bill

A bill has a price list for N items. A 10% Discount is given if the total price is greater than Rs. 2000. Fill in the missing lines of code to…