Statements are terminated with semicolons Indentation is ignored by the compiler C is case sensitive – all Keywords and Standard Library functions are in lowercase Strings are placed in double quotes Newlines are handled via \n. Programs are capable of…
Expand +Category: Deep Learning
History of C Programming Language
HISTORY OF C C was invented primarily by Brain Kernighan and Dennis Ritchie working at AT&T Bell Labs in the United States. In 1983 the American National Standards Institute began the Standardisation process. In 1989 the International Standards Organization continued…
Expand +DELEGATES, NAMESPACE AND DATAGRID
Delegates :- Delegates are a type-safe, object oriented implementation of function pointers and are used in many situations where a component needs to call back to the component that is using it. Delegates are generally used as basis of event,…
Expand +Garbage Collection in dot net
In this chapter, we are going to cover the conception of Garbage collection that is one most vital options of the .NET managed code platform. the Garbage collector (GC) manages the allocation and release of memory. the Garbage collector serves…
Expand +NUMERICS in DOT NET
.NET Core supports the quality numeric integral and floating-point primitives. It additionally supports the following types − System.Numerics.BigInteger which is an integral type with no upper or lower bound. System.Numerics.Complex is a type that represents complex numbers. A set of…
Expand +Introduction of Dot .net
.NET Core is that the latest general purpose development platform maintained by Microsoft. It works across completely different platforms and has been redesigned in a very approach that produces .NET fast, versatile and trendy. This happens to be one amongst…
Expand +How to access database without login into cpanel from my domain name
Hello friends, In this post we will learn how to access phpMyAdmin database without cpanel login using my domain name. To access database with your domain name, we have to use the phpmyadmin package. Now, i am going to explain…
Expand +Different types of errors in php
E_ERROR: A fatal error that causes script termination E_WARNING: Run-time warning that does not cause script termination E_ALL: Catches all errors and warnings E_PARSE: Compile time parse error. E_NOTICE: Run time notice caused due to error in code E_USER_WARNING: User-generated…
Expand +Types of Array
Array is the collection of keys and values. The key can either be an integer or a string. The value can be of any type. This is usually done for single-line arrays, i.e. array(1, 2) is preferred over array(1, 2, ).…
Expand +PHP Array Function
Here is the list of PHP array functions sizeof () :- This function is used to count the items of the array. (count() is also used instead of this). Example:
2 3 4 5 6 7 8 9 10 11 12 |
<?php //Define array $data=array(‘Bugatti’,’Gallardo’,’Audi’,’Nissan’,’ Chevrolet ‘); echo sizeof($data); ?> |
explode () :- This function is used…
Expand +