python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
User can choose two different math formulas with if statement
#include <iostream>
using namespace std;
void funcOne()
{
cout << "one";
}
void funcTwo()
{
cout << "two";
}
int main()
{
int vienadojums;
cou...
metas
Votes: 0
Answers: 4
Azure Key Vault ClientSecret Management
For me, I have distributable console app to users. Instead of hard-coding the connection strings in the application, I moved those to Key Vault and created the ClientCredentials.
Interactive-user-logi...
Ashokan Sivapragasam
Votes: 0
Answers: 1
Finding the biggest TestId in the list
I want to find the biggest TestId for each Student. I am using the following code which I hope has no bug. Notice that the list size may be any number but each TestId for each Student is a unique numb...
Javad-M
Votes: 0
Answers: 1
how to run containerized console app on Azure?
I have a containerized a console app which run as a scheduler app and performe some logic at specific time. I tried to run it as an Azure App service but getting below error
2022-03-30T19:10:29.209Z I...
Tabish
Votes: 0
Answers: 1