[ create a new paste ] login | about

Link: http://codepad.org/RIPyeDvs    [ raw code | output | fork ]

slevy1ster - C, pasted on Aug 28:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdio.h>
#include <stdlib.h>
#include <string.h>


int main()
{
  char let = 'a';
  char let2 = 'b';
   
   printf("%c %c\n",++let,++let2);
   
   return 0;
}


Output:
1
b c


Create a new paste based on this one


Comments: