sometimes we need to restrict user to certain input, we wants to do that for various input such as email or mobile but at the same time we don't want to limit them, the software might be used globally and for mobile number, there are different formats and digit, so we need to have different … Continue reading [C#][How To] Get mobile number mask for any region
Category: Uncategorized
[HackerRank][Kotlin]MegaPrime Numbers
This problem was asked in 'Daffodil unthinkable's' Campus drive's First online test round today, there were 3 problem, including this. I was able to solved this problem, later I got to know that this problem is also on HackerRank, In my test however instead of asking to print number of megaprimes, we were asked to … Continue reading [HackerRank][Kotlin]MegaPrime Numbers
[Vanity-URL]Direct Links for changing PROFILE-URL/Vanity URL
LinkedInFacebook
[error 0x8000000b] cannot add Google account to Windows 10/ Windows phone/PC
I assume you have already tried all solutions given at various forums and blogs, if yes and still the problem is not solved, then please make sure that you look for a update of Mail and Calendar in Microsoft store and update it.it will solve the problem for most people.
[HOW-TO] use Graphics with Dev C++
Download "Graphics.h", "WinBGIm.h", libbgi.a" from hereCopy "Graphics.h" and "WinBGIm.h" to Following locations Dev-Cpp\MinGW64\x86_64-w64-mingw32\include Dev-Cpp\MinGW64\include And copy "libbgi.a" to Following Locations Dev-Cpp\MinGW64\lib Dev-Cpp\MinGW64\x86_64-w64-mingw32\lib Then Go to 'Tools->Compiler Options->General->Linker Command Box' Paste the following -lbgi -lgdi32 -lcomdlg32 -luuid -loleaut32 -lole32 OR if you use project, paste these command into Project options->parameters->linker And then Chose '32-bit Profiling' You … Continue reading [HOW-TO] use Graphics with Dev C++
[C++][Problem] Print Diamond Pattern (Hollow Inside)
#include <iostream> using namespace std; int main() { int n,i,j,k; cin>>n; //Print upper Half for(i=0;i<n;i++) { for(k=i;k<n;k++) //Print Space cout<<" "; for(j=0;j<=i*2;j++) { if(j==0 || j==(i*2)) //Condition to print only Boundary cout<<"*"; else cout<<" "; } cout<<endl; } //Print Lower Half for(i=n;i>=0;i--) { for(k=n;k>i;k--) //Print Space cout<<" "; for(j=0;j<=(i*2);j++) { if (j == 0 || … Continue reading [C++][Problem] Print Diamond Pattern (Hollow Inside)
[c++][Problems] Window Problem
Hey there!, its been quite for a while, hasn't it?. well i got something, So my Professor gave me a Problem to solve Today, i thought you might find it interesting too, my solution is in C++, yours can be in any language, tell everyone in the comment, if you find another solution. The Problem … Continue reading [c++][Problems] Window Problem
[C++]QuickSort Array
QuickSort Program to Sort an Array in C++.
[C++] Parenthesis checker [Code_Problem]
PROBLEM : Given an expression string exp. Examine whether the pairs and the orders of “{“,”}”,”(“,”)”,”[“,”]” are correct in exp. For example, the program should print 'balanced' for exp = “[()]{}{[()()]()}” and 'not balanced' for exp = “[(])” Input: The first line of input contains an integer T denoting the number of test cases. Each … Continue reading [C++] Parenthesis checker [Code_Problem]
[.NET] DataGridView not showing the image from Data Table
Hey, there! recently working with my winform project, I came across a problem, I created a Data table programmatically and gave one column of it, the path to an image. I have done it many times, and it worked all the times before, but this time, the image didn't show, instead it said: "string.byte()" or … Continue reading [.NET] DataGridView not showing the image from Data Table

