#include "stdio.h"
int main (void)
{
Showing posts with label C- Expression. Show all posts
Showing posts with label C- Expression. Show all posts
C- Expression_1.7
#include
double main (void)
{
}
double main (void)
{
double a=1.0,b=2.0,c=3.0,d=4.0;
double u,v,w;
u=a;
v=b*c/d-d;
w=u-v;
printf("%f\n",w);
return 0;
}
C- Expression_1.6
#include "stdio.h"
int main(void)
{
int main(void)
{
int i=7;}
float f=5.5;
char c='w';
printf("%f\n",(i+f));
printf("%d\n",i+c);
printf("%d\n",i+c-'0');
printf("%f\n",(i+c)-(2*f/5));
return 0;