Wednesday, June 26, 2013

c programing

Hello friends after many days i m back with c programing.Today i m going to teach you  new function.That  is array.This function is very interesting.By this function you can easily solve any kind of problem.You can easily find out the result of n school or collage.or any thing else.You can find single result or full result.Now try this code to compiler and run it.


#include <stdio.h>
int main()
{
      int ft_marks, st_marks, final_marks;

     double total_marks;

     ft_marks = 80;

     st_marks = 74;

    final_marks = 97;

    total_marks = ft_marks / 4.0 + st_marks / 4.0 + final_marks / 2.0;

    printf("%0.0lf\n", total_marks);

    return 0;

}

HTML 5

HTML is old generation HTML but HTML5 is the next generation of HTML.Today i am going to give you  new tutorial about HTML5.This tutorial teaches you about the new features in HTML5.With our HTML editor, you can edit the HTML, and click on a button to view the result. now type this code and run it.

<HTML5>

start from hare.......  
<html>
<body>

<video width="320" height="240" controls="controls">
  <source src="movie.ogg" type="video/ogg" />
  <source src="movie.mp4" type="video/mp4" />
  <source src="movie.webm" type="video/webm" />
Your browser does not support the video tag.
</video>

</body>
</html>

HTML

Hello  friends how are you.after many i have come back.Today i m going to teach you  another HTML code.This code is about scripts.The <script> tag is used to define a client-side script, such as a JavaScript.The script element either contains scripting statements or it points to an external script file through the src attribute.The required type attribute specifies the MIME type of the script.Common uses for JavaScript are image manipulation, form validation, and dynamic changes of content.

Type this code nd run it by browser..

<script type="text/javascript">
document.write("Hello World!")
</script>

if you don't understand any thing then give comment..

Saturday, June 22, 2013

commando call of duty android game

Hello firend today i am gonna share with you a new android game commando call of duty.at this game you area army.You are the last hope so remember.Skill and confidence are an unconquered army.As a battle commando soldier,you have to protect army base from enemy lines.Enemies have initiated a full scale assault in Desert,Arctic and Ruined City theater.

download

Sunday, June 16, 2013

HTML

Want to create a web site.Then you have to learn HTML.For this i had post before.Before try this code you should saw my old post.Today i gonna introduce you a new code.By this code you can give some video file at your site.Simple and easy code.write it at note pad and save by the name (video.HTML) at your destination folder.

<html>
<body>

<video width="320" height="240" controls>
  <source src="movie.mp4" type="video/mp4">
  <source src="movie.ogg" type="video/ogg">
  Your browser does not support the video tag.

</video>

</body>
</html>

give height and weight as you want.Make it like size of video file. Then run it by web browser.

if you don't understand any thing then give comment.