BLOG

Latest Articles

Golang io.ReadCloser Examples

Golang io.ReadCloser interface is built out of an io.Reader and an io.Closer:

By tuannguyen · 4 min read · GO

How to pass default parameter to golang function?

Golang does not support optional parameters (can not set default values for parameters). But there are different methods to add golang default parameter.

By tuannguyen · 3 min read · GO

How to use cin for an array in C++ [SOLVED]

In c++ cin array is not performed in one cin statement. In this article we will learn about array input in c++. To understand array input, we first need to

By azkaiftikhar · 4 min read · How To