
Search In
Generics in C#
Generics in C# allows a programmer to generate a class or method which can work with multiple datatypes.
The specification of datatype of the elements used in class or methods is delayed by using Generics until these elements
Given are the following three functions on integers:
f(x) = x2 g(x) = x + 1 h(x) = x - 1
Implement these functions in C. Next, write a program that accepts on its input an integer n
followed by a series of letters f, g, and h terminated by
Programmers,
I wrote a registration.php (member reg) and it was working fine but the coding was not perfect (old version).
Neated-up the new version but I see a complete blank page once I click "Register" button. I do not get this mssg any
Hello readers, Today in my blog I have tried to create credit card form using Bootstrap.
In the HTML, I need to create an outer div with the class name as credit card div and had 2 nested div inside it.
With the help of Bootstrap fr
The IFNULL( ) function is available in MySQL, and not in SQL Server or Oracle. This function takes two arguments.
If the first argument is not NULL, the function returns the first argument. Otherwise, the second argument is returned.
Filter is one of the important part in angularJS. There are many default filters like:
1. uppercase
2. lowercase
3. orderby
etc.
We can use these filter simply by adding a pipe character (|) in the expression.
Now we will discuss a custom filter and
Thread
Thread is a individual program execution path. Each thread has different stack, threads share some memory space.
Performing multiple task parallely is known as multitasking and it is achieved by developing multi threaded application.
Proces
Hello, It was hard for me to describe sorta what I wanted in the title. But basically I know exactly what I want but for some reason it will not let me upload the picture that I have as an example. But Basically I want to have in my game scene a "tap
SQL Alter Table
Using this query you can add , modify or delete columns in a existing table . It is also used to change the table name .
Syntax ->
Alter table table_Name Add column_Name column_Definition ;
If you want to add multiple column i
To send email in PHP, we use mail() function. You can send text message, html message and attachment with message by the use of PHP mail() function.
Syntax
bool mail ( string $to , string $subject , string $message [, string $additional_headers [,
