0
Good tactics for BattleShipBot C Programming
If you have any tactics or any code you want to share for this I would be very appreciative.
1 Resposta
+ 1
Try to find output of this code ..
USE STANDARD COMPILER...
GCC IS RECOMMENDED.
OUTPUT MAY VARY FROM COMPILER TO COMPILER.
#include<stdio.h>
void main()
{
int a=10;
printf("%d%d%d",a++,a++,a++);
}
BTW,
Output is
121110
Try to find how.