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

Search In

strcmp string function in php

The strcmp is a string function in php which compares the two strings. strcmp is a binary-safe and case-sensitive function.This means the comparison is case sensitive. The syntax of strcmp: strcmp(string1,string2) Here, the string1 is the one wh

Computes the intersection of arrays using keys for comparison

If you want to get an array which contain all the entries of an array and have keys that are present in some other arrays for this you can use a predefined function array_intersect_key ( array $array1 , array $array2 [, array $... ] ). array_inters

What is Fibonacci Series & program for it?

What is Fibonacci Series ? Fibonacci succession arrangement or group of the numbers beginning with zero or one followed by a one, and carry on with rule that number is equivalent to the sum of prior 2 numbers. Fibonacci series is denoted by f(n) Eg

How to create a new table with specific column from another table

Check the rows of column is either greater than zero or not Use function DefaultView Pass the parameters true for distinct, and create new string for giving columns if (dt1.Rows.Count > 0) { DataTable dt2 = dt1.DefaultView.ToTabl

Check whether two strings are anagram of each other in C with character count method?

# include <stdio.h> # define NO_OF_CHARS 256 bool areAnagram(char *str1, char *str2) //function checks whether two strings are anagrams. { // Create 2 count arrays and initialize all values as 0 int count1[NO_OF_CHARS] = {0}; int

Readonly keyword in C#

Readonly keyword Readonly: Readonly is a keyword which when used with a variable then the value of that variable can only be changed either at runtime or at the time of the instance initialization. The value is assigned to these variable when they

Creating a Tic-Tac-Toe Game Using CSS

Hello readers, Well all love to play games whether a child or an adult. So here in my blog I have tried to create a game which we all have played in his/her life in their childhood days.   So, I have created it using CSS properties , hope you

Delete List Elements in python

To remove a list element, you can use either the del statement if you know exactly which element(s) you are deleting or the remove() method if you do not know. For example − #!/usr/bin/python list1 = ['physics', 'chemistry', 1997, 2000]; print lis

How to swap or exchange objects in Java?

How to swap or exchange objects in Java? Wrapper Class can be used to swap or exchange objects in Java. A Java program using wrapper classes to swap objects. class Employee { int empno, salary; Car(int empno, int salary) //Parameterized

Typography viewport size

Hello reader, In this blog we will discuss about, how to manage font size in different viewport. Usually we fix the font size with different viewport size using @media. But as we know CSS3 has some new values. Viewport size: vw, vh, and vmin are on

1 2 4 423
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: