
Search In
To Implement two stacks in an array
#include<iostream>
#include<stdlib.h>
using namespace std;
class twoStacks
{
int *a;
int size;
int top1, top2; //top of two stacks
public:
twoStacks(int n) // constructor
{
TTCN:-
TCCN is a classic testing language for characterizing test scenario and their execution for protocol testing. A TCCN test suite contains numerous experiments(test cases) written in the TTCN programming language and it is utilized for
Sometimes we are required to do some changes in our core phtml files. Its a good habit of every Magento programmer to override the core file instead of the making change in the core file.
To do so overriding the core file can be done as :
Step 1
U
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.
1- Create a new class subclass of UITextField.
2 -Write down code below in new created class
3- Add a textField in ios Your viewController.
4- Chnage th class of your TextField with the new class that you created.
5- Change the attribute of textF
Hello Readers,
This tutorial will guide you about controller overriding using config.xml. Here i am giving an example "to override Customer AccountController".
Lets start by creating the following folders:
app/code/local/Custom/Registratio
Here we will learn what is the meaning of all the status code that come under the 1xx series (i.e. indicating informational message in different situations).
HTTP 1xx series status code are as an acknowledgement to the client. With the help of HTTP
In magento, sometimes you need to add custom field to existing contact form as per client requirement. Here is an easy way to customize magento form by adding new field.
You can also add more fields as per need.
Lets see how can we do it.
Step 1. E
Extension methods are the static methods which are defined under the static classes. Since these methods are defined in static class then they are called without creating an instance of a class. Extension methods supports a reusability as they enable
This is one of the important thinks that we need to know when we talk about Collections in Java.
There are so many similarities in ArrayList and LinkedList like they implements List interface.
They both come under non synchronized classes.
Now we