yoyoyoyo
hi friends!!! c/c++ the basics of any one to be called as a software engineer....hmmm of course you might have known all these things..but yet you need to in much more detail..... there are lot more things in C/C++ which can be known only through practice....so common friends...lets start with an intro program....(:P) #include using namespace std; int main() { cout Let's look at the elements of the program. The #include is a "preprocessor" directive that tells the compiler to put code from the header called iostream into our program before actually creating the executable. By including header files, you an gain access to many different functions. For example, the cout function requires iostream. Following the include is the statement, "using namespace std;". This line tells the compiler to use a group of functions that are part of the standard library (std). By including this line at the top of a file, you allow the program to use functions such as cout. T...
Comments