- Syntax :
type variable = value;
- Program :
using namespace std;
int main() {
cout <<"\n----------------DECLARING VARIABLE----------------\n";
int x = 5, y = 6, z = 50;
cout << x + y + z;
return 0;
}
- Output :
https://monitechvenkat1620.blogspot.com Program : #include <iostream> using namespace std; int c(int x, int y) { return...
No comments:
Post a Comment