Posts by Rodrigo5244 • 126 points
2 posts
-
1
votes1
answer76
viewsA: Insert end list function on
#include <stdio.h> #include <stdbool.h> #include <stdlib.h> struct tipo_lista{ int info; struct tipo_lista * prox; }; typedef struct tipo_lista tipo_lista; tipo_lista * cria_no…
canswered Rodrigo5244 126 -
0
votes1
answer215
viewsA: What is wrong with the request for this script?
The technique of creating script tag with src only works for JSONP, if the url returns JSON instead of JSONP you will have to make a normal HTTP request using jQuery.ajax() or XMLHttpRequest or…