Paulo8x Posted May 2, 2012 Report Share Posted May 2, 2012 #include <stdio.h>int mult(float a, float b, float c) { printf"%f", a*b*c); return(0);} int main() { float x,y ; x=23.5 ; y=12.9; mult(x,y,3.87) ; return(0) ; } kkkk Quando eu acabo de postar, é que eu percebo que esqueci de abrir parênteses. Quote Link to comment Share on other sites More sharing options...
Question
Paulo8x
#include <stdio.h>
int mult(float a, float b, float c)
{
printf"%f", a*b*c);
return(0);
}
int main()
{
float x,y ;
x=23.5 ;
y=12.9;
mult(x,y,3.87) ;
return(0) ;
}
kkkk Quando eu acabo de postar, é que eu percebo que esqueci de abrir parênteses.
Link to comment
Share on other sites
0 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.