scanf
C Format Tanımlayıcıları
FORMAT TANIMLAYICILARI
Veri Türü Format Tanımlatıcısı
printf( ) scanf( )
char %c %c
int %d %d
usigned int %u %u
short int %hd %hd
unsigned shot int %hu %hu
long int %ld %ld
unsigned long int %lu %lu
float %f %f
double %f %lf
long double %lf %lf
#include "stdio.h"
#include "conio.h"
main( )
{
shot int d1;
usigned int d2;
long int d3;
C Dilinde Aritmetik İşlemler
C Dilinde Aritmetik İşlemler ve
Anahtar Kelimeleri
# include "stdio.h"
main( )
{
int d1,d2 ;
d1=(27+3)*2;
d2=27+3*2;
printf ("%d %d ",d1,d2);
}
# include "stdio.h"
main( )
{
înt d1,d2,d3,d4;,
d1=25/5; d2=42%8;
d3=85%5; d4=d1+d2;
printf ("%d %d %d %d ",d1,d2,d3,d4);
}
ANAHTAR KELİMELER
outo continue enum if short swich break default extern int