You do not have permission to edit this page, for the following reason:

The action you have requested is limited to users in one of the groups: Users, Administrators.


You can view and copy the source of this page.

Templates used on this page:

Return to Moving Negative Numbers to the Beginning of Array.

<code class="language-c">
int unknown(int n){ 
	int i, j, k=0; 
	for (i=n/2; i<=n; i++) 
	    for (j=2; j<=n; j=j*2) 
		k = k + n/2; 
	return (k); 
} 
</code>