[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y ] [Search | Free Show | Home]

Problems with a piece of C code

This is a blue board which means that it's for everybody (Safe For Work content only). If you see any adult content, please report it.

Thread replies: 8
Thread images: 1

File: prob.png (146KB, 1917x932px) Image search: [Google]
prob.png
146KB, 1917x932px
I have problem with this code:

http://pastebin.com/4XpVqMnk

as you can see from the pic too.

I acquire a matrix as a string (all in one line) from input and store it the numbers var.

Then I proceed to fill the matrix with the values gotten. But I noticed that sscanf picks the first %d value every time w/o advancing further, so the matrix is being filled all with the first number. Why is that?
>>
>>55072192
>But I noticed that sscanf picks the first %d value every time w/o advancing further, so the matrix is being filled all with the first number. Why is that?
You're not increasing the buffer position, so it will always start searching from the start of the buffer.
>>
>>55072226
How can I increase it?
>>
>>55072249
Two secs, I'm writing an example now. Short answer: use strtok
>>
>>55072192

Your toy C program doesn't deserve its own thread. Post in the stupid question thread.
>>
>>55072249
>>55072256
#include <stdio.h>
#include <string.h>

int main()
{
int i, j, mat[4][4];
char string[] = "16 3 2 13 5 10 11 8 9 6 7 12 4 15 14 1";
char* tmp = string;

for (i = 0; i < 4; i++)
{
for (j = 0; j < 4; j++)
{
sscanf(strtok(tmp, " "), "%d", &mat[i][j]);
tmp = NULL;
printf("%d ", mat[i][j]);
}
printf("\n");
}

return 0;
}
>>
>>55072361
why is that from the 2nd time on strtok uses NULL as first parameter? It searches in a null string?
>>
>>55072491
>why is that from the 2nd time on strtok uses NULL as first parameter? It searches in a null string?
man strtok
Thread posts: 8
Thread images: 1


[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y] [Search | Top | Home]

I'm aware that Imgur.com will stop allowing adult images since 15th of May. I'm taking actions to backup as much data as possible.
Read more on this topic here - https://archived.moe/talk/thread/1694/


If you need a post removed click on it's [Report] button and follow the instruction.
DMCA Content Takedown via dmca.com
All images are hosted on imgur.com.
If you like this website please support us by donating with Bitcoins at 16mKtbZiwW52BLkibtCr8jUg2KVUMTxVQ5
All trademarks and copyrights on this page are owned by their respective parties.
Images uploaded are the responsibility of the Poster. Comments are owned by the Poster.
This is a 4chan archive - all of the content originated from that site.
This means that RandomArchive shows their content, archived.
If you need information for a Poster - contact them.