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

Search In

Circular Doubly Linked List

This is an implementation of Circular Doubly Linked List in C Programming Language.   #include stdio.h #include stdlib.h struct node { int root, *next, *prev; struct node n; } n* create_node(int); voi

Paypal verify Card details for make payment

Hello guys, Its really helpful for integration Paypal in PHP to verify card details. To integrate it, first you have to download the PHP-Paypal SDK, below is the direct link https://github.com/paypal/PayPal-PHP-SDK/releases // 1. Autoload the SDK P

Java 8- Method and Constructor References

Method Referencing Method reference is feature related to lambda expressions. Method references are more readable form of Lambda expressions for already written methods. “::” operator is used to define method reference. It provides a way to a meth

How to set the PayPal In OpenERP-8 (Odoo)?

Step-1 Install Payment_Paypal Module. Step-2 Settings-->Accounting-->Configuration -->Paypal account -->Show payment Step-3 Settings-->Payments-->Payments Acquiers-->Select Paypal Step-4 Paypal Email ID-->Pay

Randomization of the colors

Web color can be expressed in hexadecimal , or as RGB value. With the RGB value, each color is represented as a number between 0 and 255. The example demonstrates one technique to generate a color, using one function to randomly generate the number,

Difference between var and dynamic in C#

"Difference between var and dynamic in C#"     To understand the differences more clearly, let us go through the following table: VAR DYNAMIC This was introduced in C# 3.0 This was introduced in C# 4.0 In this

Get transaction details in paypal by paypal transaction ID in PHP

Hello guys, Its really helpful for integration paypal in PHP to REST API. To integrate it, first you have to download the PHP-paypal SDK below is the direct link https://github.com/paypal/PayPal-PHP-SDK/releases // 1. Autoload the SDK Package. Thi

Unsafe Codes in C#

C# allows use of pointer but it makes your programming code unsafe. A pointer is a variable which stores reference of another variable of same data type in which the pointer is declared. The general form of a pointer declaration is: type *va

IEnumerable in C#

While storing and retrieving list of elements we use many classes for that like ICollection,IList .   We also have one collection that be used for this purpose named as IEnumerable.         IEnumerable<T> Th

  • 106
Pointers in C

Pointer in C are used to store the reference of the variable not its value.   Everytime we declare a variable its reference is created in the memory somewhere and when it is accessed that variable memory address is fetched for retrieving it.

1 9 19
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: