Posts by ProgramadorW • 71 points
8 posts
-
1
votes0
answers37
viewsQ: Javascript eval. Why is it insecure?
Well, I was reading about eval Javascript and I came across a lot of questions in my brain in which it involves about it being insecure and scope. Because he is insecure? Why is considered a third…
-
1
votes1
answer473
viewsQ: How to change the input cursor?
Hello guys, I think it’s something very simple, but I’m still kind of layy in HTML I would like to know how I do for the moment that the person click the input that writes in the middle of the box…
-
-2
votes1
answer268
viewsQ: How to edit Wordpress HTML and CSS
Guys I’ve searched everywhere where I can ta doing the editing of CSS and HTML on a Wordpress site and I’m not finding... someone could help me or send a difficult link ta.
-
1
votes2
answers3003
viewsQ: How to make the HTML page fit the window size
Personal to with a question I see on sites how the stackoverflow itself adapt to the size of the window as I do it in an HTML code? You resize a Chrome window and the page adapts without cutting the…
-
0
votes2
answers82
viewsQ: What is the difference in the assignment of an already started matrix to an uninitiated one?
char nome[10]; nome = "w" //Aqui ocorre um warning, por quê isso ? char nome_dois[10]; nome_dois[0] = "w" // Aqui e normal, como esperado. "w" is in a static memory? nome[0] is in a dynamic or…
-
1
votes1
answer165
viewsQ: Pointer return pointing to a local character vector?
#include <stdio.h> char *local(void); void main(void) { char *ponteiro = local(); printf("%s\n", ponteiro); /*Saida = - (*/ } char *local(void) { char nome[12] = "programador"; char *ponteiro…
-
1
votes1
answer2803
viewsQ: Compare a char vector?
Good staff I have the following doubt why I can’t compare two char vectors using relational operators ? I know that vectors are a composite type and that the characters are in a static area I’m sure…
-
0
votes1
answer22
viewsQ: Program for when a structure statement occurs at different locations
Follow the source code... #define _WIN32_WINNT 0x0501 #include <stdio.h> #include <ws2tcpip.h> #include <winsock.h> #include <windows.h> WSADATA data; struct addrinfo tips,…