Sayfalar

8 Ağustos 2011 Pazartesi

51 adet jquery örnekleri

Birbirinden güzel jquery örnekleri ve eğitimleri bulabileceğeniz siteler

Menu

menu

2) jQuery Collapse -A plugin for jQuery to collapse content of div container.

3) A Navigation Menu- Unordered List with anchors and nested lists, also demonstrates how to add a second level list.
menu

menu

Tabs

7 Ağustos 2011 Pazar

43 adet psd web şablonları ve css dersleri

Günümüzün en populer programlarında biri olan photoshopla artık hemen hemen herşey yapılabiliyor.
Bunlarda biri web şablonları oluşturmak aşağıda birbirinden farklı web şablon eğitimlerini bulabirisiniz.
1. From PSD to XHTML Tutorial




In this first-ever video podcast, I start the conversion process of an Adobe Photoshop mockup of a website, into a real live CSS based website. This is pretty rough here folks, I’m sure these will get more focused with time.



2. How To Create a Horizontally Scrolling Site



3. From PSD to HTML, Building a Set of Website Designs Step by Step



4. Subcide: Creating a CSS layout from scratch


5. Build a Sleek Portfolio Site from Scratch – PSD+XHTML Tutorial



6. From PSD to CSS HTML in 4 easy tutorials



1 Mart 2011 Salı

C de Matematiksel İfadeler

( + ) : Artı

( - ) : Eksi

( / ) : Bölme

( * ) : Çarpma

( % ) : Modül
Yukarıdakiler c dilinde matematiksel ifadelerdir.
Herkes bunların ne olduğunu bilyordur.
Uzun uzun anlatmıyacağım. Belki "%" ifadesini bilmiyorsunuzdur. O da Bölümden kalan demektir
Yani;

#include<stdio.h>
#include<conio.h>
main()
{
int sayi1,sayi2,topla;
int bol,carp,cikar,bol_kal;
printf("birinci sayi=");
scanf("%d",&amp;sayi1);
printf("ikinci sayi=");
scanf("%d",&amp;sayi2);
topla=sayi1+sayi2;
bol=sayi1/sayi2;
carp=sayi1*sayi2;
cikar=sayi1-sayi2;
bol_kal=sayi1%sayi2;
printf("toplami=%d\ncikar=%d\ncarp=%d\nbol=%d\nbolumden kalan=%d",topla,cikar,carp,bol,bol_kal);
getch();
}