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

String Stairs Pattern

The program must accept a string S containing only alphabets as the input. The program must print the string S…
PythonF

Sort – Domain Names

The program must accept the email addresses of N students as the input. The program must print the names of the email domains based…
CF

C – Function – Average

An array of N integers is given as input. The program must print the average with precision up to two decimal places. Fill in the missing…
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…