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

Area of N Objects

The program must accept the shape and dimensions of N objects as the input. The program must print the sum of the area of all the objects as…
CF

Sum of Dice Values

Pairs of integers are passed as the input to the program. The integers in each pair represent values of two dice in a game. If both the values…
CF

Vector of Characters

Design a class charVector that has a character vector as datamember. Provide member functions in the class to createVector, duplicateVector,…
PythonF

Sort In Subsets of Size K

Sort In Subsets of Size K: Given N numbers, the program must sort within subsets of size K. That is every K numbers must be sorted among…
CF

Product – Swap Unit Digits

The program must accept two integers X and Y as the input. The program must print the product of X and Y after swapping their unit digits as…
JavaF

Palindrome Missing Alphabet

Problem Statement :String S which is a palindrome is passed as the input.But just one alphabet A is missing in S. The program must print the…
CF

Pattern – Half Pyramid Reverse

Given a positive integer value N as input, print the pattern as in the Example Input/Output section. Input Format:The first line contains N.…