How does the next code run? It's my first time seeing it in C grammar when I think it's going well in GCC ㅜㅜ Where's that thing? What's that called?
#include <stdio.h>
int main()
{
int x = 10;
while (x --> 0) // x goes to 0
{
printf("%d ", x);
}
}
--> is not an operator. '--' and '>' are two operators combined.
while( (x--) > 0 ) Think of it like that.
597 GDB gets version error when attempting to debug with the Presense SDK (IDE)
567 Who developed the "avformat-59.dll" that comes with FFmpeg?
885 When building Fast API+Uvicorn environment with PyInstaller, console=False results in an error
567 rails db:create error: Could not find mysql2-0.5.4 in any of the sources
© 2024 OneMinuteCode. All rights reserved.