Skip to main content

Find Value of S=ut+1/2*a*t**2.

PROCEDURE:-

      1.enter values for u,a,t to find distance
      2.find distance with the formulae ut+1/2at2
      3.print the above result


CODE:-

#include<stdio.h>
#include<conio.h>
void main()
{
  float u,t,a,S;
  clrscr();
  printf(“enter values u,t,a”);
  scanf(“%f %f %f”, &u,&t,&a);
  S=(u*t)+(0.5*a*t*t);
  printf(“\n  S = %f”, S);
}


Input:- enter values u,t,a
              U=10,t=4,a=4.9
Output:- S =79.200

Comments

Popular posts from this blog

Hide your IP address with Proxy servers

The most common method to Hide your IP address is to use a PROXY server. Proxy server is a computer network service that provides an indirect connections between other computer networks. By using this proxy sites we can access any website with out revealing our IP address. This is the best method to keep your IP address secure. Here is the free proxy server website link.  http://www.freeproxyserver.ca/     We need to type the URL of such as (www.facebook.com) in the box given in the site, then we can browse it with out providing our IP address

Future Mouse-Evo Mouse

New evolution of the Mouse. In 1980's round ball mouses are invented, then technology introduced Optical mouses. Now upcoming Mouse is named as Evo mouse . No more movement of your hands on placing a physical mouse,   Your finger is the pointer . You can use this mouse on any Flat Surface and also it requires very little space. This mouse contains a Power button on the top, Mini USb port . It works with the help of bluetooth and input is taken by the sensor. View this Video to know the functionality of   EvoMouse

Control your computer with your voice commands

You can control your PC by using your voice commands Windows7 has an amazing feature, you can say commands that the computer will respond to, and also you can dictate text to the computer. First of all you need to set up your computer for windows speech recognition. There are three steps to setting up Speech Recognition: set up your microphone, learn how to talk to your computer, and train your computer to understand your speech. Before you get started, make sure that your microphone is connected to your computer . Set up your microphone Open Speech Recognition by clicking the  Start  button  , clicking  Control Panel , clicking  Ease of Access , and then clicking  Speech Recognition . Click  Set up microphone . Follow the instructions on the screen. Note The success of speech recognition is directly related to the quality of the microphone you use. The two most common types of microphones for Speech Recogn...