Jump to content

What should i do?

Featured Replies

Hi,

I will start to the department of computer engineering. And i want to do something about my department before starting the school. Now i've almost finished c programming book. What should i do after that?

 

Note: My school will start on 13th September.

Thank you in advance

Edited by martymcfly

Look up your college and try to figure out what languages are on their syllabus.

  • Author
These are my lessons and their definitions:
CEN 101 Algorithms and Programming I
Problem solving. Input
-
Operation
-
Output process. Analysis and design of algorithms. Definiteness,
finiteness, effectiveness of algorithms. Algorithm Language. Contants, variables and expressions.
Ar
ithmetical, relational and logical operators. InputOutput statements. Conditional and iterative
statements. Vector and matrix representations. String manipulations. Subroutines and Functions.

Applications on a structural programming language

 

 

 

CEN 102 Algorithms and Programming II
Structural programming concept. C/C++ Programming Language, Fundamentals, Data types, Statements,
String functions. Array manipulatio
ns. Procedures and Functions. Recursion. Sorting and Searching
algorithms. Basic file applications. Dynamic variables and elementary data structures, Pointer, Stack,
Queue, Linked list.
. C/C++ Programming Language,

 

Then learn c++ you will probably be using either visual studio or codeblocks

 

Conditional and iterative statements. --> if statements and for loops

Data types --> int, string, array, multidimensional array etc

String functions---> anything to do with manipulating strings

Sorting and Searching --> sorting arrays or strings for example in alphabetical/numerical order

Basic file applications--> can you read and write to a file

Pointer http://www.cplusplus.com/doc/tutorial/pointers/

Stack http://www.cplusplus.com/reference/stack/stack/

Queue, http://www.cplusplus.com/reference/queue/queue/

Linked list http://www.cplusplus.com/reference/list/list/

 

Also make sure your built exe can run command line arguments. Know the difference between release version and debugged versions. Know where visual studio saves your projects by default. Be able to run your exe without error. Know what a windows environment variable is.

Edited by fiveworlds

  • Author

Ok thank you for your helps, i will learn c++ :)

Should i learn about Analysis and design of algorithms?

Edited by martymcfly

You should also know the difference between builds. For istance x86 is for windows 32 bit, x64 is for windows 64 bit

  • Author

How can i learn the difference between builds? Are they about of compilers? And can i get information from where or which source?

Anyway here is a simple script to accept 0>3 command line arguments in c++. Which will just output what you type in command prompt ConsoleApplication1.exe dga a b

 

#include "stdafx.h"
#include <iostream>

int main(int argc, char *argv[])
{
using std::cout;
using std::endl;
if (argc > 1) {
std::cout << argv[1] << std::endl;;
}
if (argc > 2) {
std::cout << argv[2] << std::endl;;
}
if (argc > 3) {
std::cout << argv[3] << std::endl;;
}
}

Archived

This topic is now archived and is closed to further replies.

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.