Showing posts with label programming and computer mania. Show all posts
Showing posts with label programming and computer mania. Show all posts

Saturday, 24 December 2016

How to play sound in C/C++ language using CodeBlock IDE

Playing  sound in C/C++ language is very interesting.

So, I am back with a code that plays a sound using C/C++ language in CodeBlocks IDE.This is a little code and here we go .........


#include<conio.h>
#include<windows.h>
int main()
{

    Beep(100,500);

    getche();

    return 0;

}

Now ,thats all we have to do to complete this task.And its time to explain the Code.

Explanation:-

Beep() is a function that is used to emit sounds of certain frequency .There are two parameters in this function.The first one is the frequency of the sound and the other one is the duration to play that sound .The most important thing about this function is that it belongs to the header file windows.h .
So to do these all you have to include windows.h header file.You can use this function in both the lnaguages C/C++.Now , we talk about the return value of this function .

Returns 0 if the function does not succeed.

Returns non-zero value if it succeed.

Beep(frequency as integer,duration in miliseconds)



 

Wednesday, 2 November 2016

C program to count days till the year given by user

This program illustrates a bit combination of logical and programming concepts of calender .And its easy to code and understand it you know the basics of C programming .In this program i have used some functions for just decorating the program output and might not work on turbo c++ compiler.And one more caution about this code when you compiler and run it in Turbo C++ compiler then it will give you logical error.It will calculate and give correct output in turbo till 170 years.So its better to use this program in other compiler like Dev C++,Codeblocks,Codelite etc.This is why because turbo C++ is very old and buggy.

Recommendation:use codeblocks or dev C++ IDE to make this program

Its coding time:
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
int main()
{
int i, yy=0 ,l_days=0;
long int  t_days=0  ;
system("cls");
system("color 1e");                         //for changing background and text color
printf("\nCount total days till the given years");
printf("\nEnter the year::");
scanf("%d",&yy);
t_days=yy*365;                                           //counts the days of the simple years till yy years

for(i=1;  i<=yy;  i++)
{
if(i%100==0)                                        //condition for century
{
if(i%400==0)                         //condition for leap year in century
l_days++;
}
else
if(i%4==0)                                     //condition for leap year
l_days++;
}
printf("\nleap years extra days::%d",l_days);

printf("\ntotal years days::%u",t_days);

t_days=t_days+l_days;

printf("\ntotal days till%d is::%u",yy,t_days);

getche();

return 0;
}

output of the program
output of the program


Description :

In this program user will enter the year and this program will count the total day till that year and displays .system("cls") is used to clear screen like clrscr() function.

Logic:we have variable yy to take input from user and then we multiply yy to 365 so that we get the total days and store it in another variable t_days.But we have also leap years and their extra days to be added in the t_days to get net result.

Now the rest logic is on leapyear days .As we know the century that is divided by 400 will be the leapyear otherwise not.So in the for loop we check yy%100==0 ,if it is true then it is century and we then check whether divisible by 400 or not .I divisible by 400 then it is leap year and we increment the variable l_days by one.

The second part of the leap year,if it is not century and divided by 4 then it is leapyear and we increment the variable l_days by one.

At last we add all the days to get the net result like::total days=leap year extra days+total days by simple years.

I hope you understood the things.

we will come soon with another program so must visit again.



Thursday, 20 October 2016

The instructions that a beginner programmer must follow while making a C program

Hello friends in this post i am going to share The instructions that a beginner programmer must follow while making a C program.If we are able to drive these problems out then we can be a good programmer.These problems are very common and sometimes they frustrate the students.Consequently, students think that programming is very difficult.So if you are a beginner then you should think programming is very easy and you can do it .The most important thing in learning programming is the interest of domain.You are interested then you will learn easily.So generate your interest ....

Here are the key points....

1.ALWAYS START WITH ZERO LEVEL

If you  want to learn somethig and you dont know the abc of that thing then  you must start with the basics and gradually you will learn more and more concepts till the advanced topics.Now a days the students want to learn the advanced concepts before learning the basics.

2.READABILITY

Use tab in the program so the you will find it easy to counter errors in your program . Don't make the code complex.

3.ALWAYS FIND THE ALTERNATE SOLUTION

If you are making a program then you must find the alternative way to solve the problem.This will boost your logical skill.


4.SEARCH AND RESEARCH 

Search and research on internet so that you will aware of the new things .you will come across a lot of things that will help you in learning the typical things.

5.PRACTICE 

Do practise a lot to get experience in coding.You will learn key concepts and will be aware of errors .

6.CREATE INTEREST

Create interest in making program then you will learn fast and grab the things easily.
                     
                         Search the querry that you have on internet or ask your teachers without any hesitations.

Thank you for visiting us ......happy coding.......

we will come  with new facts and figure ,tips and tricks so visit again...

 

Monday, 17 October 2016

How to create a C program without main function

              C PROGRAM WITHOUT MAIN FUNCTION

Hello friends... 
we always create a program in C and C++ programming language and the most important thing is that we create a main function in every program.We are also taught by the teachers that we can not create a C program without main function .As we know main is a user defined function so can we make a C program without main function?
Yes we can....


So in this post i will show you how to achieve this task.
here is the code...

#include<stdio.h>
#include<conio.h>
#define begin main
int begin()
{
              clrscr();
              printf("This program is without main function");
              getch();
              return 0;
}

This program will  compile and run successfully .

So this was all for this post we will come with new and interesting typical programmming in C that make a lot of fun.








Tuesday, 4 October 2016

How to make a folder with no name

Hello friends ,

Today we are going to create a folder which has no name in window operating system.In window operating system there is a facility or feature which is Unicode Control Character .They are invisible and represented as non printable characters.

Unicode Control Characters(by computerhope.com)-non-printing character, also called a control character, is a number that represents a non-written or non-printable character (letter, number, or symbol). Some control characters represent audible or silent signals to be sent or received. Other control characters (ASCII code) include the backspace, line feed, form feed, carriage return, escape, and delete.






 Here are the steps to make a folder with no name:

step 1-Create a new folder          

step 2-delete the default name which is 'New Folder' then right click 

step 3-select insert unicode control characters

step 4-now you can select any of the options except the last two options.


And now we have successfully created the folder with no name.


We will come with new tips or new coding of typical C programs, So visit again ...........





Monday, 3 October 2016

how to create a 3d animation in C language

HOW TO CREATE A 3D ANIMATION IN C LANGUAGE

Hello friends we always want to do something new so that we can improve ourselves in every field of our lives.
Here i have created a program of 3d animation in C language .I have used turbo C++ compiler for this and also recommend you to use if you are running this program.Its ouput is pretty much cool and you can customize it your own so enjoy it....
Here is the code.....
ALSO SEE:TYPING GAME PROJECT IN C


#include<conio.h>
#include<stdio.h>
#include<graphics.h>
void happy();
int main()
   {
happy();
return 0;
}
void happy()
{
int x,y, gd = DETECT, gm;
     char arr[]="HAPPY TEACHER'S DAY 2016",arr1[]="They say that...'Experience is the best teacher'";
     int i;
     initgraph(&gd,&gm,"c:\\tc\\bgi");//used to initialised the graphics
     settextstyle(SCRIPT_FONT,HORIZ_DIR,3);//used to change the text style and size
    setcolor(4); // used to set the color of the output text
     outtextxy(50,170,arr1);  //used to print msg at the given position cursor
     outtextxy(50,190,"But for us...");
     outtextxy(50,210,"Having you as our teacher is the best experience!");
     settextstyle(TRIPLEX_FONT,HORIZ_DIR,1);
     setcolor(GREEN);
outtextxy(300,350,"Created By :: Shashi Kumar");
settextstyle(TRIPLEX_FONT,HORIZ_DIR,5);
     while(!kbhit())
{
     for(i=100;i<110;i++)
     {
outtextxy(50,i,arr);
setcolor(i);
delay(200); // pause the program
     }
}       getch();
     
system("cls");  // substitution for CLRSCR();
closegraph();
}
ALSO SEE::HOW TO CHANGE THE BACKGROUND COLOR OF TURBO C++ EDITOR'S BACKGROUND

Tuesday, 28 June 2016

Welcome

Hello!!!!
This is Shashi doing graduation in computer application and like to play with computers and programming.I have created lots of different pattern programming and other programs in C language .So i just want to share whatever i will create because it will give a lot of confidence as well as motivation to carry on my path.  
                                                                                                             Thanks.........