View Code of Problem 136

#include <stdio.h>
2.int main()
3.{
4.  int a,b;
5.  scanf("%d %d",&a,&b);
6.  printf("%d\n",a+b);
7.  return 0;
8.}

/*
F:\temp\19907323.9039\Main.c:3:1: error: invalid suffix "int" on floating constant
F:\temp\19907323.9039\Main.c:3: error: expected identifier or '(' before numeric constant
*/

Double click to view unformatted code.


Back to problem 136