Posts by Thiago Prestes • 133 points
5 posts
-
0
votes5
answers27365
viewsA: Remove jquery field mask
If you are using the Jquery plugin you can use cleanVal, using unmask you will be removing the mask from the field, already cleanVal you will be returning the value of the field without the mask,…
-
0
votes0
answers1387
viewsQ: This program is giving Runtime Error on Uri, I would like to know where I am missing
#include <stdio.h> #include <stdlib.h> #include <math.h> #include <string.h> int main(){ short int numCasos, i = 1, j = 1, soma = 0; long long int num; scanf("%hd",…
-
2
votes4
answers934
viewsA: How can I decrease program processing time?
I made one this way here, using the tips of the answers, greatly improved my first code for this kkk int main(){ unsigned short int in, i = 1; scanf("%hd", &in); while(i <= in*4){ printf("%d…
-
3
votes4
answers934
viewsQ: How can I decrease program processing time?
I need to show this exit: 1 2 3 PMU 5 6 7 PMU 9 10 11 PMU 13 14 15 PMU 17 18 19 PMU 21 22 23 PMU 25 26 27 PMU #include<stdio.h> #include<stdlib.h> #include<math.h>…
-
8
votes1
answer147
viewsQ: GCC compiler command to display #ifdef
What compiler command do I use to display this line at runtime? #ifdef DEBUG double tInicio_=clock() ; #endif