
Search In
Named parameters:-
The concept of named parameters was introduced in C#4.0 and main purpose was to pass the parameter by name not the position. This features provide us the liberty to pass the parameter a
I am trying to develop an android application that gets the device latitude and longitude using GPS or Network providers, whichever is available for the process. The code works perfectly fine when the device's GPS is on but unfortunately it never
Hello Coders,
It’s always a need to validate email at user end. Not only this but strong password is also suggested to secure accounts.
Here are snippets to validate if correct email and strong password are entered or not.
//Validat
Hello friends, welcome to findnerd. Today I am going to tell you how to create PDF from HTML using JSPDF. In this blog I am going to use fromHTML plugin to convert html page into pdf.
Copy and paste the following code into your file:
&
Most people don’t go to school for leadership. Most leaders come into their position either by being groomed for the job, or by simply falling into a situation that requires them to develop leadership skills. In many ways, that’
Hi,
Swift has introduced a new keyword called 'defer'. Based on its meaning ‘defer’ puts off an action or event to a later time. It runs when the execution is about to leave the code block. You can use ‘defer’
A style guide is a well-defined set of standards for designing and writing documents. This document may be for general use or for particular organisation. The guide helps implementing better styles to facilitate better communication. It is
Hi,
In this Video Tutorial on Swift Basic, we will learn about Operators in Swift.
Based on fundamentals of C and objective-C, Swift offers various operators to check, change, compare and combine value. These operators can be used t
Auto layout adjusts the size and position of view according to the constraints applied to it. This approach dynamically changes our User Interface according to different screen sizes.
There are different ways for adding autolayout programmatically. H
in this code I am trying to return the address of local array(c[100]) ,complier was showing me error of returning address of local variable but when changed the datatype from int to static int it works fine.whats the reason behind this?
#include<
