Computer Science, asked by Tishajain, 1 year ago

#include
#include
main()
{
int a=25,b=45;
ptintf("%d/n",a+b);
system("pause");
}
is there anymistake please tell it

Answers

Answered by sahilbhilave
0
It has been a quite long time for me since i learnt c++
but here are some corrections
 
#include<iostream.h>
#include<stdio.h>

void main()
{
int a=25,b=45;
printf("%d/n",a+b);
system("pause");
}
Similar questions