Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 

Search In

How to split a string in C++?

// A C++ program for splitting a string using strtok() #include <stdio.h> #include <string.h> int main() { char str[] = "First-Demo-Example"; char *token = strtok(str, "-"); // Returns first token while (token != NUL

Foreach loop in C++

Foreach loop is another loop which was introduced in C++ 11. The advantage of foreach loop over other loops is that, it can access elements of an array quickly without performing initialization, testing and increment/decrement, the code bec

Explanation of php_uname

php_uname function is used in php for getting information about the operating system ,host name, release name, version information and machine type.This method is used in php for returning a description of the current operating system in which you ar

How to create ListView in android.

To create ListView in your android app follow the steps mentioned below:-   1) Define ListView in your xml file where you wish to show list view.   activity_main.xml <LinearLayout xmlns:tools="http://schemas.android.com/tools"

How to move to next image through swipe in android

For changing the image on swipe can be done by implementing the ViewPager in your android app. For implementation of ViewPager we need to follow the steps mentioned below:- 1) Create ViewPager tag in your xml file . activity_main.xml <Relativ

Different AppStates in iOS

        THESE ARE THE APPSTATES IN IOS   AppState tell that whether the app is running in foreground or background or when the state changes.. In early versions of iOS three states were supported : non runnin

Routing Protocols in Internet

While transmitting or receiving data everyone wonders that data gets loaded so fast how this thing is possible.   One reason may be the kind of medium transmitting the data.   The other reason is the routing mechanism used to transfer t

  • 247
How to check Project web app settings using PSI in SharePoint

Whenever we create new site in SharePoint site collections its default settings is "SharePoint Permission Mode". But to create Groups, Categories, Security Templates,User Sync Settings,Delegates and so on we require "Project Permission

Razor basic for MVC

Razor engine that is used with MVC is identified by the symbol @. Razor engine is used in MVC for generating views and defining the HTML part. Single statement block and inline expression @{ var message = "Hello,Razor view engine";} Message is :

Program of Autoboxing where widening beats boxing.

Autoboxing Autoboxing is converts primitive data type into it's equivalent wrapper type class automatically in Java. E.g: int primitive type is converted to Integer Wrapper class in autoboxing. Widening Widening in Java can be defined as conve

1 545 949
Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: