Skip to main content

Posts

Free Book Android Application Devlopment for A to Z

Android Application Devlopment for A to Z. _________________________________________________________________________                                                  download this video                   Hello blog ....                                                                           Are you ready for learn how to devlop android application .                          Here below the link click for learn.                               You and me know very well about that...

How to find area of rectangle

//Area of rectangle include  <stdio.h> include  <conio.h> void main() {    int length,  breadth,  area;    printf("enter length of rectangle=");   scanf("%d",  &length);   printf("enter breadth of rectangle=");   scanf("%d",  &breadth);   area = length * breadth;   printf("area of rectangle=%d",  area);   getch(); }

How to find area of circle in c...

comment line /* area of circle */ #include <stdio.h> #include <conio.h>  void main() {  int radius,  area;  printf(enter the radius of circle");  scanf("%d", &radius);  area  =  3.14 * radius * radius;  printf("area of circle =%d",  area);  getch(); } now your code is done  compile it and run it..

Digital Animation Bible

You want to learn digital animation  Download it. Download

8 steps to become a web developer from scratch

In order to become a developer you need to learn programming languages - but also skills like marketing and communications. Web development  is booming so inevitably growing numbers of people are wondering: how do I become a web  developer  from scratch? If you are looking to build a career as a web developer, you will need to gain new a set of skills which involves  programming languages  and other soft skills like marketing and communications. Now, if this seems intimidating to you, it’s actually not that difficult – as long as you put the work and effort into it. It’s all in the preparation… if you are willing to see what is expected of you, it will make things a lot easier to understand and plan ahead for. Plus, it’s much more exciting to complete.  Browse the latest tech jobs with Techworld .  These eight steps will help you transition into  becoming a web developer : 1. Is this your passion? The word ‘passion’ is...