Light OJ Solution Algorithm
Author: Md.Fardin Jaman Aranyak 1000 - Greetings from LightOJ You are one of the most talented programmers and like to solve challenging pr...
Author: Md.Fardin Jaman Aranyak 1000 - Greetings from LightOJ You are one of the most talented programmers and like to solve challenging pr...
Define a structure called hotel_info that will describe the following information. hotel name, hotel address, room charge, number of rooms ...
Write a program to find whether a number N is prime or not using recursive function, where N is a positive number given by the keyboard: #i...
Remove Extra Spaces From String: #include<stdio.h> #define max 100 int main(){ char arr[max]; int i,count=0; gets(arr); ...
Memory Allocation: when we run a c program its take 4 part in a memory. stack heap data area code area Stack memory : Genera...