What is the output after for loop executes for (i =0; i<10;++i)
Printf("%d", i &1);
A for-loop is a control flow statement for specifying iteration, which allows code to be executed repeatedly.
The output after for loop executes for
(i =0; i<10;++i)
Printf("%d", i &1);
Output:-
0101010101.