mirror of
https://github.com/kuhyx/testsAndMisc-archive.git
synced 2026-07-04 13:23:01 +02:00
- Add +x to Python scripts with shebangs (3 files) - Remove -x from non-script files like .cpp, .txt, makefile (23 files) - Move shebang to first line in C/imageViewer/lint.sh
13 lines
209 B
C
13 lines
209 B
C
#include <stdio.h>
|
|
|
|
const int NUMBER_FOR_POLISH_SMALL_L = 136;
|
|
|
|
int main(void)
|
|
{
|
|
for (char i = 'a'; i < 'z' + 1; ++i)
|
|
{
|
|
printf("%ca%cka\n", i, NUMBER_FOR_POLISH_SMALL_L);
|
|
}
|
|
return 0;
|
|
}
|