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!

PythonF

Date Overlap

The program must accept two date ranges as the input. The program must print YES if the date ranges are overlapping. Else the program must…
CF

Bomb Blast Survivors

An N*N grid is passed as input to the program. There are bombs planted in the grid. Each bomb is detonated and destroys all the blocks in its…
PythonF

Two Digits Numbers Sum

Accept an array of N values and print the sum S of all the two digit numbers present in the array. If there are no two digit numbers, print…
PythonF

Date Format

The program must accept a date as the input. The program must print the date in the mentioned format as shown in the Example Input/Output…
CF

Matrix Transpose

Given a matrix of R rows and C columns as the input, the program must print the transpose of the input matrix. Input Format:The first line…
CF

Print Strings for Number

A number N is passed as the input to the program. Each digit in the number represents an alphabet (a for 1, b for 2 …) based on the…
PythonF

Triangle Pattern – 002

Given an odd integer N, print a triangle with * as mentioned in the below examples. Input Format: The first line contains N. Output Format:…