
Search In
// 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 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- 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++ 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
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
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
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
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
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.
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
