else sorunu

else sorunu

gmax

#include<stdio.h>
#include<string.h>
#include<conio.h>

int main()
{

int hisage;
int age;
char name[30];
age = 14;


printf("What is your age
");
scanf("%d", hisage);
if(hisage, age);
printf("Me too!!!
");

else
printf("Hıhhh
");

getch()
return 1;
}
------------------------------------------------------------
else kodunu tanımıyor ne yapmalıyım

2005-01-12 17:03:54

Re:else sorunu

drekon

if(hisage, age)
{
printf("Me too!!!
");
}else{
printf("Hıhhh
");
}

[hr]
genel format budur. yani bu şekilde hiç başın ağrımaz :)

2005-01-11 21:34:41

Re:else sorunu

j-joey

yazımındaki hata if(hisage, age)´den sonra (;) noktalı virgül koymuş olman...

bu yüzden if verdiğin koşul gerçeklense de gerçeklenmese de hiç bir şey yapmadan alt satırdan devam ediyor...

daha sonra else ifadesini görüp "bu da ne?!?!?!?" diyor ve "else without if" diyor...

2005-01-12 17:03:54