Jump to content

Ponteiros


DarkAngel

Recommended Posts

Este programa soma e subtrai valores utilizando ponteiros

#include <stdio.h>
float add_subt (float num1, float num2, float *a, float *b) {
*a = num1 + num2;
*b = num1 - num2;
}
int main (void){
float a, b;
float num1, num2;
printf ("Introduza dois numeros: \n");
scanf ("%f%f", &num1, &num2);
add_subt (num1, num2, &a, &b);
printf ("A soma dos dois numeros e %.2f e a subtracção e %.2f \n", a, b);

getchar ();
return 0;
}
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.