php-array-manipulation-functions-part-2

PHP Array Manipulation Functions Part 2 with practical examples

Array manipulation functions in php-part2 Some functions are discussed already.now in this part 2 series we can see remaining array functionsnin php. 1.rsort() 2.asort() 3.ksort() 4.array_slice() 5.array_splice() 6.array_search() 7.in_array() 8.array_unique() 9.array_keys() 10.array_values() 11.count() rsort(): rsort() function in php is very useful.that function is used for sorting elements in descending order.element values are stored in indexed … Read more

C Conditional Statements (if, if-else, switch) – Beginner’s Guide

C Conditional Statements

Conditional statements in c programming  Conditional statements are used to check the condition.whaether condition is true or not.if condition is true it runs one statement.there are three conditional statements in c programming language. These are : 1.if statement  2.if-else Statement  3.Nested if else statement  1.if statement: First we are discussing if statement .In c program … Read more

Hello World Program in C Language – Basic C Program for Beginners

Basic c program Here we are writing basic c program to print Hello world . Program: #include<stdio.h> void main() { printf(“Hello World”); } Output: Hello World Printf() is a input function it is used to print statement on the screen. In programming c printf() and scanf() are predefined functions.these two functions are part of studio.h … Read more