What and how to use file handling in C?

Files : File is a collection of numbers, symbols and text placed on the disk. file can be read and modified as per the user requirement, thus file allow us to store information permanently in the disk. The file object contain all information about stream like current position, pointer to […]

How to write a program to convert a binary number to a decimal number?

#include <stdio.h> int main() {     int num, rem, digit=0, j=1;          printf(“Enter the number in binary \n”);     scanf(“%d”, &num);          while(num > 0){         rem = num%10;         digit += rem*j;         j *= 2;         num = num/10;     }          […]

Write a program to make star pattern Pyramid.

Hey Guys 🙂 , today i am going to tell you the tricks to make star pattern like pyramids. Suppose we have to make pattern like * ** *** **** So here are the steps to make pattern like this as; Step 1: count the depth or number of levels in a […]

Write a program to create table of any number.

import java.util.Scanner; public class Main {     public static void main(String[] args) {         Scanner scan = new Scanner(System.in);                  System.out.println(“Please enter a number, for which you want to write a table:”);         int number = scan.nextInt();                  for(int count=1; […]

Write a program to find length and sum of digits in a number.

Lets first figure out the logic of getting digits of a number, once we get the digit we can count them and also find addition. suppose we have a digit= 543374. lets figure out it as; Step 1: reminder = 543374%10 = 4 digit =543374/10 =54337     (1 digit) Step […]

What are the pointers and how to use them in C?

What is Pointer? this is a question who trouble many of us, so i decide to write on it, hope it helps you 🙂 When we define a variable in c or whatever language, the compiler will find unused/vacant location in memory and allocate that to variable, to use. As we know […]

Write a program for binary searching in c

Binary search:  Binary search is less time taking than linear search as it starts in the middle of a sorted array, and determines on which side the value is. Steps for binary search algorithm: Firstly before applying direct searching on array, we have to sort the array. for sorting algorithm you […]

How to Write program for creating and writing in CSV file?

File Handling : It  is a way of performing operation on file using C language. operations are  like creation of file, writing, appending, reading and etc. Creating File: fopen() is used to open the file and it takes two arguments. First argument is the file pointer (name of file) we want to […]