Jump to content
Fórum Script Brasil
  • 0

[Ajuda] VAriavel Com Valor Estranho !


Lucas Cantarelli

Question

Tenho o Seguinte Código:

#include <stdio.h>
#include <stdlib.h>

int main(int argc, char *argv[])
{
  int Num1 = 0,
      Num2 = 0,
      Soma = 0;
  
  printf("DIGITE O 1 NUMERO: ");
  scanf("%d",&Num1);
   printf("DIGITE O 2 NUMERO: ");
  scanf("%d",&Num2);
  
         Soma = Num1 + Num2;           
         
         printf("a Soma e %d \n",&Soma);
  
  system("PAUSE");    
  return 0;
}

o Programa Acima Geral Essa Saida, Por que eu n Sei, já Usei o DEV C++ e o Code Blocks

Alguém me Ajuda Por Favor !!, preciso entragar uma lista de Exercicios Para Quinta Feira.

saida.png

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Olá Lucas, seu código está quase certo, porem tem uma coisa errada. Na hora de imprimir o resultado na tela deve ficar assim:

printf("a Soma e %d \n",Soma);

Você estava com o "&" na frente da variável "Soma". Estava apontando para o endereço de memória. falou!

Edited by Prog_Junior
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...