View Code of Problem 1

#include <stdio.h>
mian
{
  int a,b,c;
  printf("%d",&a);
  printf("%d",&b);
  c=a+b;
  scanf("%d",c);
}
/*
Main.c:3:1: error: expected '=', ',', ';', 'asm' or '__attribute__' before '{' token
 {
 ^
*/

Double click to view unformatted code.


Back to problem 1