see

A

multiplication of two number c program

#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
int a,b,c;
a=10;
b=20;
c=a*b;
printf ("%d",c);
getch();
}

Read More »

hello world c program

#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
printf("hello world");
getch();
}

Read More »

division of two numbers c program

#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
int a,b,c;
a=10;
b=20;
c=b%a;
printf ("%d",c);
getch();
}

Read More »

circumference of circle

#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
float pie,r,coc;
pie=3.14;
r=10;   coc=2*pie*r;
printf("%f",coc);
getch();
}

Read More »

area of rectangle c c p p programs

#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
int l,b,a;
l=10;
b=20;
a=l*b;
printf("%d",a);
getch();
}

Read More »

area of circle c program

#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
float pie,r,aoc;
pie=3.14;
r=10;
aoc=pie*r*r;
printf("%d",aoc);
getch();
}

Read More »

addition of two number c program

#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,c;
a=10;
b=20;
c=a+b;
printf ("%d",c);
getch();
}

Read More »

top ten java beginner tutorial resource on youtube

top ten java tutorial on youtube -java tutorial for beginners


1) NEW BOSTON JAVA BEGINNERS TUTORIAL
LINK - http://thenewboston.org/list.php?cat=31
NO OF VIDEO -87.
 
2) SLIDENERD
LINK - https://www.youtube.com/user/slidenerd/playlists
NO OF VIDEO=100

3) DEREK BANAS
NO OF VIDEO=94
LINK - https://www.youtube.com/playlist?list=PLE7E8B7F4856C9B19

4) BUCKYS JAVA TUTORIAL
NO OF VIDEOS=87
LINK - https://www.youtube.com/user/FranVarVar/playlists

5) CAVE OF PROGRAMMING
NO OF VIDEO=47
LINK - https://www.youtube.com/user/caveofprogramming/playlists

6) TECHNO SESH
NO OF VIDEO=70
LINK - https://www.youtube.com/user/technosesh/playlists

7) JAVA9S
NO OF VIDEO=25
LINK - https://www.youtube.com/user/java9s/playlists

8) MY BRING BACK
NO OF VIDEOS=48
LINK - https://www.youtube.com/playlist?list=PLDAA5DE54FB5215EC

9) JOSE VIDAL
NO OF VIDEO=63
LINK - https://www.youtube.com/playlist?list=PLF03C6B2C0B292A1E

10) JAVA INTERMEDIATE
NO OF VIDEO=59
https://www.youtube.com/playlist?list=PL27BCE863B6A864E3

Read More »

WAP to find the length of input string without using strlen function.



WAP to find the length of input string without using strlen function.


#include<stdio.h>
#include<conio.h>
void main()
{
  char a[60];
  int i=0,z,j,count=0;
  clrscr();
  scanf("%s",&a);
  while(a[i]!='\0')
  {

  count++;
  i++;
  }
  printf("%s",a);
  printf("%d",count);
  getch();
}

Read More »
Copyright © 2013. BloggerSpice.com - All Rights Reserved
Customized by: MohammadFazle Rabbi | Powered by: BS
Designed by: Tilabs