LOGO
Start something that matters
Start something that matters
Stop wasting valuable time with projects that just isn't you.

Learn more and start today

ABOUT THE COMPANY

Key features of our company

Responsive

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore.

Passion

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore.

Design

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore.

Support

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore.

We know design.

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
tempor incididunt ut labore et dolore.

View Our Works

Buildings

THE TEAM

The ones who runs this company

John

John Doe

CEO & Founder

Phasellus eget enim eu lectus faucibus vestibulum. Suspendisse sodales pellentesque elementum.

Jane

Anja Doe

Art Director

Phasellus eget enim eu lectus faucibus vestibulum. Suspendisse sodales pellentesque elementum.

Mike

Mike Ross

Web Designer

Phasellus eget enim eu lectus faucibus vestibulum. Suspendisse sodales pellentesque elementum.

Dan

Dan Star

Designer

Phasellus eget enim eu lectus faucibus vestibulum. Suspendisse sodales pellentesque elementum.

14+
Partners
55+
Projects Done
89+
Happy Clients
150+
Meetings

OUR WORK

What we've done for people

A microphone
A phone
A drone
Soundbox
A tablet
A camera
A typewriter
A tableturner
×

Our Skills.

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
tempor incididunt ut labore et dolore.

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
tempor incididunt ut labore et dolore.

Photography

90%

Web Design

85%

Photoshop

75%

PRICING

Choose a pricing plan that fits your needs.

  • Basic
  • 10GB Storage
  • 10 Emails
  • 10 Domains
  • Endless Support
  • $ 10

    per month
  • Pro
  • 25GB Storage
  • 25 Emails
  • 25 Domains
  • Endless Support
  • $ 25

    per month
  • Premium
  • 50GB Storage
  • 50 Emails
  • 50 Domains
  • Endless Support
  • $ 50

    per month

CONTACT

Lets get in touch. Send us a message:

Chicago, US

Phone: +00 151515

Email: mail@mail.com


-->

Sunday 11 December 2016

C Program to Convert Decimal Numbers to Binary Numbers

Hello all,

you may find c code to convert decimal to binary numbers,so you are at the right place......

CODE :

#include <stdio.h> // include header file for i/o functions

int main(void)   //main function definition
{
int n,i,j;       //integers n=taking input for decimal number
                            //i and j for iterating for loop

printf("Enter Number which you want to convert into Binary Number : ");       //print information on stdout
scanf("%d",&n);    //read integers from stdin

for(i=sizeof(int);i>0;i--)   //i=sizeof(int) typically it is 4 for gcc and 2                                                         //for turbo c compiler
{
       for(j=1;j<=8;j++)
              {
                            printf("%u",(n&(1<<(i*8)-j))?1:0);    //here i used                                                                                                         //control statement
              }
               //if n AND (1<<bit number) is positive than prints 1 otherwise 0
               printf(" ");           //print space after printing 8 bits 
}
return 0;
}



Output.jpg


Thursday 17 April 2014

HOW TO MAKE A MATLAB CODE FOR SECANT METHOD TO FIND OUT SOLUTION OF NONLENIAR EQUATION

4 . MATLAB CODE FOR SECANT METHOD

hello friends after many days i am coming back...
i hope you all are fine..
now let us start our matlab code for secant method and let us understand each command of this matlab code


% input function for finding root of nonliner equation
% s is stands for system if we are using any variable then we have to specified s that's why.......
a=input('enter function for finding real root:','s');
% a is now enter function by us
f=inline(a)
%inline indicates that when we have to find f(some point) then we can find by using inline function
%enter the first initial guess

x(1)=input('enter first initial guess: ');
%enter the second initial guess
x(2)=input('enter second initial guess: ');
%enter the tolerence up to which u have accuracy required
n=input('enter tolerance of the real root of given function: ');

%initialize iteration as 0
iteration=0;

%for loop for finding value of next point
for i=3:1000

%formula for secant method
   x(i) = x(i-1) - (f(x(i-1)))*((x(i-1) - x(i-2))/(f(x(i-1)) - f(x(i-2))));
   xn=x(i)
    iteration=iteration+1;
    if abs((x(i)-x(i-1))/x(i))*100<n
        root=x(i)
       iteration=iteration
        break
    end
end

NOTE: : after '%' whatever writing that is comment

now write this code in matlab and enjoy this......

and wait for our next post.......comming soon,,,,

Thursday 14 February 2013

3 , ABOUT  "C" LANGUAGE
              
        WELCOME TO MY BLOG,
            ALL OF YOU KNOW ABOUT C LANGUAGE ,IT IS MOST  IMPORTANT LANGUAGE FOR COMPUTER PROGRAMMING, IT IS DEVELOPED BY DENNIS RITCHIE BETWEEN 1969 AND 1973 AT AT&T BELL LABS C LANGUAGE IS USEFUL FOR COMPUTER OPERATING SYSTEM PROGRAMMING ,CIRCUIT PROGRAMMING AND MANY MORE USES OF C LANGUAGE,
NOW A DAYS C+ AND C++ LANGUAGES ARE USING BUT THESE ARE NEW VERSION OF C LANGUAGE  

DENNIS RITCHIE
  • Many later languages have borrowed directly or indirectly from C, including C#, D, Go, Java, JavaScript, Limbo, LPC, Perl, PHP, python, and Unix's C shell . The most pervasive influence on these languages has been syntacil and they tend to combine the recognizable expression and statement syntax of C with underlying type systems, data models, and semantics that can be radically different. C++ started as a preprocessor for C and is currently nearly a superset of C.                                         
  • Before there was an official standard for C, many users and implementors relied on an informal specification contained in a book by Dennis Ritchie and Brian Kernighan; that version is generally referred to as "K&R" C. In 1989 the American National Standards Institute published a standard for C (generally called "ANSI C" or "C89"). The next year, the same specification was approved by the International Organization for Standardization as an international standard (generally called "C90"). ISO later released an extension to the internationalization support of the standard in 1995, and a revised standard (known as "C11") was approved in December of 2011.
  • a small & simple program of C language
       #include<stdio.h>
       #include<conio.h>
       void main()
       {
                    clrscr();
                    printf("HIREN");
                    getch();
       



Tuesday 12 February 2013

Monday 11 February 2013

1, FUTURE IN AUDIO ENGINEERING

          THERE ARE MANY STUDENTS WHO DON'T KNOW PROPER INFORMATION ABOUT ENGINEERING AND GOT ADMISSION IN ANY BRANCH, NOW A DAYS MANY COMPETITION ARE IN ENGINEERING SO THAT SPECIAL FOR ENGINEERING STUDENT DON'T KNOW SOME BRANCH IN THAT BRANCH SOME STUDENT ARE INTERESTING BUT THEY DON'T KNOW ABOUT THAT BRANCH THAT IS AUDIO ENGINEERING,SOUND ENGINEERING,VIDEO ENGINEERING etc...


AUDIO ENGINEER

Audio Engineering is a good career choice for those people who want to transform their love for music to full-fledged profession. It is a great combination of music and technology. Audio Engineering is all about capturing, recording, copying, editing, mixing and reproducing sound using electronic and mechanical devices. Hence it involves both production and post production task. It uses all the latest technology to give a polished form to music. Audio engineers are not only confined to studio but also have a great role in live shows. They manage all types of background music and also balance the sound of all music instruments with the artist’s voice. The booming audio industry requires a workforce having knowledge both in music and technology. The person with complete idea of technical and artistic aspects of audio creation is in very high demand in today’s job market.
Audio engineering has become one of the most popular and demanding careers of the modern generation. Many colleges and universities offer degree and diploma courses in Audio Engineering. This course helps students to know the technical and creative aspects of recording process. They are fully trained with all the electronic devices which help to control the sound effect .They are being taught how to set up, test, adjust recording equipments for a recording session in studio environment and live performance. Apart from these, the course also helps students to handle music business and music contracts. These courses also provide opportunity to students to have a real life experience in the studio industry. Audio engineers having excellent knowledge in music can start up their own studios.