Python Exception Handling

As we start writing programs, we may encounter errors which are not basically a syntax error but run time errors, which cann ... ) The output is:- (adsbygoogle = window.adsbygoogle || []).push({}); Received error: 1300 Loading...

Python Functions

Contents A function is a block of organized code used to perform a specific function. The reusability in any program is im ... y the user for accomplishing some task. The example can be seen as greet() function that we defined above. Loading…

Top Collections(Lists) of Mini Projects in C and C++ free download source code and exe.

Here are the collections of Mini Projects in c and c++ with full source code and executable file. All the codes are compi ... Database Management System Bike Race Game Other Top Collection of Mini Projects Top 10 C/C++ project list 

C Program to convert a string into its corresponding upper case format

The program given below will ask for a string as an input to the user and displays its corresponding uppercase format. No m ... ase form is = %s",strupr(n)); } Output: Enter the string: HouSE String in the lowercase form is = HOUSE Loading…

C Structure & Function

In this tutorial, you will learn about the process of passing the elements of structure into the function. The C language g ... address of the Employee: Florida employee name is Jack id is 45000 salary is 6487720 address is Florida   Loading…

C program to calculate the length of a string using C string Functions

This program will ask the user to input a string. The program will implement the strlen() function to calculate the length ... tal character or length of the string = 5   (adsbygoogle = window.adsbygoogle || []).push({}); Loading…

C Function Types

A function is a small part of a program which is a collection of codes to perform a specific task. As we have seen in our ea ... of division. Henceforth, all the jobs of initialization and printing are done within the main function.     Loading…

Difference between Arrays and Structures in C

Both the arrays and structures are classified as structured data types as they provide a mechanism that enables us to acc ... aximum and Minimum elements of an Array   (adsbygoogle = window.adsbygoogle || []).push({}); Loading…

C Programming: Switch Statement

In the previous lesson we used a  if… elseif statement in order to execute different block of code for each different condi ... one statement should be executed at a time. (adsbygoogle = window.adsbygoogle || []).push({}); Loading…

C Programming Arrays

An array is a series of elements of the same type placed in contiguous memory locations that can be individually referenced ... e array for example.     float matrix[50]; (adsbygoogle = window.adsbygoogle || []).push({});   Loading…

C Programming: Getting Started. What is the best IDE for C?

Before starting actual coding, first, you have to do is to download IDE (Integrated Development Environment) which makes th ... tart coding and compiling using Code::Blocks. Click Here to Download https://www.codeblocks.org/downloads Loading…

C Programming: Dynamic Memory Allocation (DMA)

C language requires the number of elements in an array to be specified at compile time. But we may not be able to do so alw ... ure use, using the free function: Free(ptr); (adsbygoogle = window.adsbygoogle || []).push({}); Loading…

Retrofit 2.0 tutorial with sample application

Retrofit is an HTTP client library in Android and Java. It has great performance compares to AsyncTask and other android ... at the end of our tutorial. You can access complete code of both client and server in github repository. Loading…

Google Cloud Messaging (GCM) in Android using PHP Server

GCM for Android is a service which is basically used to send the data from the server to the android devices. One use of th ... n server. Whenever it sense the new message, then it pushes the message as a notification using notification manager.

Python Inheritance

Contents (adsbygoogle = window.adsbygoogle || []).push({}); 1 What is inheritance in Python? 2 What are metho ... s Class MultiDerived(Base1, Base2): (adsbygoogle = window.adsbygoogle || []).push({}); pass   Loading…

Calculation of Discrete Fourier Transform(DFT) in C/C++ using Naive and Fast Fourier Transform (FFT) method

Discrete Fourier Transform has great importance on Digital Signal Processing (DSP). There are many situations where analy ... ified using Matlab’s function fft2(X)   (adsbygoogle = window.adsbygoogle || []).push({}); Loading...

Android App Development with MonoDroid using.NET framework in Visual Studio

The craze of smart phones is increasing day by day. Many people in the world use Smart Phones as they are portable, good ... configure MonoDroid in Visual Studio 2010. (adsbygoogle = window.adsbygoogle || []).push({}); Loading…

Android – Why Google map is not displayed in my application??

There are some reasons due to which a Google map is not displayed in Android Application instead a grey portion with square ... add the Google map library inside as below (adsbygoogle = window.adsbygoogle || []).push({}); Loading…

I am planning to develop an Android Application in JAVA platform. Where should I start??

When I was thinking to learn android application development a year ago, I had a same problem, where should I start from?  ... and learn android application development. (adsbygoogle = window.adsbygoogle || []).push({}); Loading…

Solving Knapsack problem using Dynamic Programming

This is post is basically for solving the Knapsack problem, very famous problem in optimization community, using dynami ... else: reconstruction.append(0) i -= 1 (adsbygoogle = window.adsbygoogle || []).push({});