Posts by nandaah.munhoz • 187 points
4 posts
-
3
votes1
answer250
viewsQ: How to check the battery consumption of a device’s sensors?
I am developing an application for Android, in which I will use the sensors embedded (for example, GPS and Accelerometer) of the mobile devices, only before I need to test the consumption of these…
androidasked nandaah.munhoz 187 -
5
votes1
answer1118
viewsQ: Read file in C
I am doing a project in C, which is necessary to create and read a file. I am having difficulty implementing the reading. In reading I tried to apply fgets(), fscanf() and the fread(). But none…
-
5
votes2
answers518
viewsQ: Data Structure - C Double Chained List
I’m doing an activity proposed by a teacher, who asks to remove an element from the end of a double chained list. Except the function I set up to solve the problem is locking the program. In the…
-
4
votes4
answers15159
viewsQ: C language - Prime numbers in vectors
I am solving exercises, in C language, on vectors. The exercise is as follows: Make a program that loads an array of 10 integers, show only the primes and their respective positions. Okay I solved…