ONLINE COMPILERS
LIBRARY
MANUAL PAGES & DOCS
CONTACT
Latest Users' Questions
User Submitted Source Code!
Description:
s
Language: C/C++
Code:
s
Language: C/C++
Code:
#include <stdio.h>
int main()
{
int defint;
char defchar;
double defdouble;
float deffloat;
printf(" in value is: %d \n",defint);
printf(" in value is: %f \n",deffloat);
printf(" in value is: %c \n",defchar);
getchar();
return 0;
}
int main()
{
int defint;
char defchar;
double defdouble;
float deffloat;
printf(" in value is: %d \n",defint);
printf(" in value is: %f \n",deffloat);
printf(" in value is: %c \n",defchar);
getchar();
return 0;
}
Comments: