This blog is a place where you find Codes,Tips and Tricks of all popular language which important for EC,EI,EE,CS and Other Branch students.
/*logic to add two numbers in c++ without using plus operator*/
#include<stdio.h>
using namespace std; int main() { int a=25,j=200,i; for(i=0;i<j;i++) { a++; } cout<<a<<endl; }
No comments:
Post a Comment