Questions tagged as 'console'

2
answers

How to print UTF-8 characters in c ++ console?

The console incorrectly displays accented characters. How to print them correctly (UTF-8)?     
asked by 20.05.2018 / 02:16
1
answer

Refresh console row with C #

I've already asked this same question once, but in that case I needed it for the python language, now I need to solve this same problem with the C # language I have a loop in C # , and I would like to enter the value of a variable each time...
asked by 13.12.2017 / 11:57
1
answer

Reading user information

I started studying C #, and my first program (except for hello world hahahaha) is an area calculator. In the code below, after I type the option (choosing which picture I want) the console simply closes. Console.WriteLine("Bem vind...
asked by 11.07.2016 / 23:11
1
answer

How do I know which script manipulated a gift and modified the HTML attributes?

Is it possible to know through the console?    Imagine this story: You have several JavaScript files embedded in the header of the page, and when you submit a post, nothing appears in the return input, however it's not from PHP that it's do...
asked by 31.03.2016 / 15:41
1
answer

Textbox / TextEntry in a console application [closed]

Is it possible to add a Textbox to an application console?     
asked by 02.09.2015 / 14:05
1
answer

HTTP Basic Authentication with AJAX and php

I'm trying to do a simple password authentication using HTTP BA. follow the codes: login.php <?php if(!(isset($_SERVER['PHP_AUTH_USER']) && isset($_SERVER['PHP_AUTH_PW']))){ header('WWW-Authenticate: Basic realm="Restricted A...
asked by 28.08.2018 / 02:46
2
answers

Assigning values to a variable

I have the following program: #include <stdio.h> int a,b; int main(int argc,char *argv[]){ int c; printf("%d",a+b); printf("%d",c); return 0; } How do I pass a value to the global or local variable via terminal? When I...
asked by 11.04.2018 / 20:28
1
answer

How to draw file in gz compressed HTML?

I'm starting to use gzip, I compress a JS file but when I call it in HTML, the error in the console.     NO HTML <script src="/presencial/includes/jorge_includes/all/js/main.js.gz/main.js"></script> The folder is as follows:...
asked by 02.02.2018 / 15:33
1
answer

With reading a keyboard number without using the "enter" in C ++

I want to create a menu where the user chooses the option 1 to 5, would like the user to type the number and the program would enter the option without having to press Enter . Here's an example #include <iostream> #include <cstdio...
asked by 13.11.2017 / 18:04
1
answer

Usage Text User Interfaces in C #?

I would like to give a basic interface to an application developed in Console Application. I want to make use of features like TUI (Text-Based User Interfaces), common in other platforms like NodeJS. Is it possible to do this in a C # applicatio...
asked by 28.11.2017 / 18:59