Advertisement
Guest User

rctest.c

a guest
Mar 19th, 2018
490
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.27 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5.  
  6.   printf("P6");
  7.   printf("1000 1000");
  8.   printf("255");
  9.   int x, y;
  10.   for(y = 0; y<1000; y++)
  11.   {
  12.     for (x= 0; x<1000; x++)
  13.     {
  14.  
  15.       printf("%c%c%c", (unsigned char)255, (unsigned char)0, (unsigned char)0);
  16.     }
  17.   }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement