Code::Blocks Forums

User forums => Nightly builds => Topic started by: killerbot on September 27, 2006, 05:25:36 pm

Title: The 27 september 2006 build will NOT be out.
Post by: killerbot on September 27, 2006, 05:25:36 pm
no commits
Title: Re: The 27 september 2006 build will NOT be out.
Post by: ahlongxp on September 28, 2006, 07:49:22 am
I want to say sth about code-completion.
now we have to add a space between "(" and "scanf" to make code-completion work.
if you code like this:
Code: cpp
	while (scanf("%s %d", s, &n) == 2)
{
    printf(doit(s, n));
    putchar('\n');
}
no popup window appear?
when we change it like this:
Code: cpp
	while ( scanf("%s %d", s, &n) == 2)
{
    printf(doit(s, n));
    putchar('\n');
}
it works