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

Search In

Check whether two strings are anagram of each other in C?

// C program to check whether two strings are anagrams #include <stdio.h> #include <string.h> void quickSort(char *arr, int si, int ei); //Function declared for sorting a string bool areAnagram(char *str1, char *str2) //Function che

Storage Classes in C++

Storage classes defines the scope of the variable in the function. Storage class specified for a variable shows that for how long time the variable will remain in the program and which section of the program will have the accessibility of the variabl

VTABLE and VPTR in C++

VTABLE-  C++ uses a special form of a runtime method  binding to implement virtual functions which is called virtual table. Virtual table is a table of functions used to accomplish function calls in a dynamic binding manner. Virtual binding

Header Files in C++

Header Files in C++ are used to provide the functions and facilities that is used in our program to make our task easy to do and better way to perform.   Header files provides the way through which you can print or  take input in our prog

Preprocessor in C++

The preprocessor are the directives, which gives instruction to the compiler to do something before execution.   C++  supports various preprocessors like #include, #define, #if, #else, #line, etc.   The #define Preprocessor This d

Call By Reference in C

To pass values into the function is done by the two ways   Pass values into the function also known as call by value   Pass its reference also known as call by reference       In the first approach the value is dire

Upgrade Php: How to upgrade php 7 on Ubuntu 14.04

Php 7 release date was December 3, 2015. This blog explains how to quickly upgrade an Apache web server running PHP 5.x (any release) to PHP 7. Run the command to install PPA packages first $ sudo apt-get install python-software-properties $ sudo

Function in C++

For declaring and defining functions in C++ we have the syntax and we have to follow it. The general form for declaring a function in C++ is: /* Signature of function */ return_type function_name( parameter list ) { body of the function } &nb

How to Convert List to DataTable in C# and VB.NET

In this blog I described how to convert list objects to DataTable. There are several method to convert list objects to DataTable. In this blog I used List interface for conversion. It is a generic method, it converts all types of list into DataTable.

Checkbox and Radio Buttons using Bootstrap(Touch Friendly)

Hello Readers,In my example I have simply created Radio and Checkbox buttons using Bootstrap framework. We basically use checkboxes when we need to select one or several options from a given list while radio buttons are used for selecting one option

1 80 320
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: