Penggunaan Escape Sequence.
Contoh Escape Sequence :
1.#include <iostream.h>
2.#include <conio.h>
3.#include <stdio.h>
4. void main() {
5. int a=1, b=2, c=3;
6. int d=4, e=5, f=6;
7. printf("%d\t %d\t %d\t \n",a,b,c);
8. printf("%d\t %d\t %d\t",d,e,f);
9. getch();
10.}
No comments:
Post a Comment