Header Ads

Hii,I am Anand Nayak.This blogger is make for specially basic programs of some language.
Showing posts with label c. Show all posts
Showing posts with label c. Show all posts

Csv File

April 18, 2020
What are CSV files? CSV files are text files with information separated by commas, saved with the extension .csv.  They allow large amo...Read More

While loop

April 03, 2020
#include<stdio.h> #include<conio.h>   void main()    {        int i;        clrscr();         while(i<=5)                    ...Read More

LCM

March 16, 2020
#include<stdio.h> #include<conio.h>   void main()   {   int a,lcm;   clrscr();   printf("enter any number whi...Read More