Please Read our FAQ
#include <stdio.h>_main(__ , ______ , _______)const char *__;{int ___ = ______;int ____ = _______;while(____ == _______){char _____ = __[___]; _____ == ' ' ? putchar(_____) : putchar(++_____);(__[___] == '\0') ? ____ = ______ : ___++;(____ == ______) ? (____ = ______) : (____ = _______);}return ______;}main(){_main("etbj xnt vnqkc",0,1);putchar('\n');return 0;}
gcc -ansi cop.c -o st
/* Name: bt2final.c Copyright: gpl2 Author: ahmed samer Date: 13/09/08 8:20 Description: i'm trying to learn macros*/#include<stdio.h>#include<conio.h>#include<stdlib.h>void line2(void);main(){ char usr[4],pas[4]; printf("\n"); line2(); printf("\nWellcome to BackTrack v.2.0 Final\n"); line2(); printf("\n\nthe system is up and running now."); printf("\n\nlogin as \"root\", with password \"toor\", both without quotes, lowercase."); printf("\n\n\nAfter you login, try the following commands:"); printf("\n\nstartx ... to run Xwindow system in VISA mode 1024×768 at 75Hz"); printf("\nflux ... the same like startx but use FluxBoxinstead ok KDE"); printf("\nxconf ... to autoconfigure your graphics card for better performance"); printf("\nati ... to autoconfigure ati drivers (download ati.lzm required)"); printf("\nOther commands you may find useful (for experts only!):"); printf("\n\n\nconfigsave/configrestore ... to save and restore all filesystem changes"); printf("\nfileswap .... to create special for swapping RAM to your harddisk"); printf("\n\nWhen finished , use \"poweroff\" or \"reboot\" command and wait untilit completes\n"); line2(); do { printf("\n\nbt login: "); scanf("%s",&usr); } while(strcmp(usr,"root")!=0); do { printf("\n\nbt pass: "); scanf("%s",&pas); } while(strcmp(pas,"toor")!=0); printf("\n\n\t\twellcome to my world ;)\n\n"); }void line2(void){ int i; for(i=0;i<70;i++) printf("=");}
scanf("%s",name);scanf("%s",last_name);