Programming Puzzles C Program without main() function - Programming Puzzles We can write c program without using main() function. To do so, we need to use #define preprocessor directive. The C preprocessor is a micro processor that is used by compiler to transform your code before compilation. It is called micro preprocessor because it allows us to add macros. A...
Programming Puzzles Find Anagram String - Programming Puzzles Given two strings, work out if they both have exactly the same characters in them. Example Input word, wrdo This returns true because they are the same but just scrambled. Input word, wwro This returns false. Rules Here are the rules! * Assume input will be at least 1 char long,...
Programming Puzzles Best golfing (tips and tricks) in C - Programming Puzzles What general tips do you have for golfing(tips and tricks) in C? 1. Use bitwise XOR or - minus sign to check for inequality between integers: * if(a^b) instead of if(a!=b) save 1 character. * if(a-b) instead of if(a!=b) also save 1 character. --------------------------------------------------------------------------------...
Programming Puzzles Build a Rocket - Programming Puzzles This isn't rocket science. LoL Write a program or function that takes in a single-line string. You can assume it only contains printable ASCII. Print or return a string of an ASCII art rocket such as | /_\ |I| |N| |D| |I| |A| |_| /___\ VvV with the input string written from...
Wiki How to cast / project your Android / Windows Phone screen to a Windows 10 PC [without any 3rd party software] The Windows 10 Anniversary Update introduces a new Connect app which lets users cast their Android or Windows 10 Mobile’s screen to their Windows 10 PC. Android users: The procedure is relatively simple and goes as follows for Android users: 1. Open the notifications center on your Android phone...
Primary Type Casting - C Programming Type casting refers to changing an variable of one data type into another. The compiler will automatically change one type of data into another if it makes sense. For instance, if you assign an integer value to a floating-point variable, the compiler will convert the int to a float. Casting...
Primary Quiz - Arrays in C Programming This quiz is based on this Array - C Programming [https://developerinsider.co/array-c-programming/] tutorial. So, To get better score on quiz, read the tutorial first. Poll Maker [http://www.poll-maker.com]...
Downloads AppBox - A Tool for iOS Apps Wireless Installation AppBox is a tool for developers to deploy Development and In-house applications directly to the devices from your Dropbox account. Give it a try - https://github.com/vineetchoudhary/AppBox-iOSAppsWirelessInstallation How to use AppBox 1. Link your Dropbox account with AppBox. 2. Select and upload the iOS application "OR&...
Wiki What's new in Xcode 8? [Updated to 8.1, 8.2 and 8.3] Xcode is the complete developer toolset used to create apps for Apple TV, Apple Watch, iPad, iPhone, and Mac. The Xcode development environment bundles the Instruments analysis tool, Simulator, and the OS frameworks in the form of tvOS SDKs, watchOS SDKs, iOS SDKs, and macOS SDKs. Jump to "What&...
Wiki Stepwise Guide to Enable Windows Subsystem for Linux (WSL) Microsoft built new infrastructure within Windows – the Windows Subsystem for Linux (WSL) – upon which we run a genuine Ubuntu user-mode image provided by Microsoft's great partners over at Canonical, creators of Ubuntu Linux. The result is that you can now run native Bash on Ubuntu on Windows. 1....
Windows Microsoft just released UWP Community Toolkit - Collection of helper functions, custom controls, and app services Recently, Microsoft introducing the open-source UWP Community Toolkit [https://github.com/Microsoft/UWPCommunityToolkit], a new project that enables the developer community to collaborate and contribute new capabilities on top of the SDK. The UWP Community Toolkit is a collection of helper functions, custom controls, and app services. It simplifies and...
Swift Data Type - Swift Programming Language Swift offers the programmer a rich assortment of built-in as well as user-defined data types. The following types of basic data types are most frequently when declaring variables − Integers Integers are whole numbers with no fractional component, such as 42 and -23. Integers are either signed (positive, zero, or negative)...
Swift Constants, Variables, Type Annotations, Print, Comments and Semicolons - Swift Programming Language Constants and variables associate a name (such as maximumNumberOfLoginAttempts or welcomeMessage) with a value of a particular type (such as the number 10 or the string "Hello"). The value of a constant cannot be changed once it is set, whereas a variable can be set to a different...
Machine Learning Why machine learning prevalent today? - Machine Learning Tutorial Machine learning is a field that had grown out of the field of AI, or Artificial Intelligence. We want to build intelligent machine and it turns out that there are a few basic things that we could program a machine to do such as how to find the shortest path...
Machine Learning Introduction to Machine Learning - Machine Learning Tutorial Machine learning is one of the most exciting recent technologies. So, What is Machine Learning? Machine learning is a subfield of computer science that evolved from the study of pattern recognition and computational learning theory in artificial intelligence. In 1959, Arthur Samuel [https://en.wikipedia.org/wiki/Arthur_Samuel] defined...