
Search In
Method Overloading
Creating a multiple methods with same name and with different argument list is known as method overloading.
When we are overloading a method argument, list should be unique i.e, it should be unique with either number of arguments
This is the Implementation of Stack using Array in C. The concept of Stack is to work on LIFO(Last In First Out). The Element can be Pushed into the Stack of Size 5. The Below code shows How the stack works. The Last Element inserted by the user is s
The below example shows the concept of FIFO. The First Inserted Element is shown at first position and if you want to retrieve the element then first inserted element will be retrieved first.
#include<stdio.h>
#include<conio.h>
#include&
We can send mail by Using mail() function.This is a PHP predefined function for sending mail.
Also we can send multiple attachment at the same time using php mail function and using php code for multiple files.
For sending multiple attachment we
It is a series of Whole number where we have to find sum of the two preceding numbers. It Begins with 0 and 1, the sequence goes like this 0,1,1, 2, 3, 5, 8, 13, 21, 34, etc. using the formula n = n(-1) + n(-2), where the n(-1) is the the last
While performing joins you need specific columns of the joined tables so for doing that you need to mention the name of the column with their table name.
This task gets tedious because you have to write your table name with every column you
While writing API services you need to understand what nudge in that actually means if you come across that particular word.
Nudge is nothing but a general message that we sent to another user or group of users.
We can send single n
While writing the stored procedure you always pass the parameters as the input type and the output type according to your need.
So while using these parameters you may notice that if you miss any parameter value during the stored pro
In writing the stored procedure we always need to work with the default value for the proper execution of the programs and the stored procedure we have made for the application.
So for doing it sometimes we have scenarios when we don
This tutorial show's how we can create a simple Html file through PHP script.
if($filename == ''){
$filename = 'demo.html';
$writefile = ($filename , 'w');
$content = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http