View Code of Problem 1

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

Double click to view unformatted code.


Back to problem 1