On November 14, 2008 15:00, in comp.lang.c, Nomen Nescio (nobody@dizum.c om)
wrote:
[snip]
Overkill
Try
#include <stdio.h>
int main(void)
{
puts(" --- ")
return 0;
}
--
Lew Pitcher
Master Codewright & JOAT-in-training | Registered Linux User #112576
http://pitcher.digitalfreehold.ca/ | GPG public key available by request
---------- Slackware - Because I know what I'm doing. ------
wrote:
its urgent.pls help me.
>
mona said:
>
mona said:
>hi,i urgently need a project including graphics,pointe rs.
In the meantime, here's a program that meets the specifications:
>
#include <stdio.h>
>
int
main(void)
{
/*
* What we have here is a simple graphics output.
* We satisfy the requirement for pointers in two ways:
* (1) we have a graphics pointer (or arrow)
* (2) the argument to printf() decays to a pointer
*/
printf(" === \n");
>
#include <stdio.h>
>
int
main(void)
{
/*
* What we have here is a simple graphics output.
* We satisfy the requirement for pointers in two ways:
* (1) we have a graphics pointer (or arrow)
* (2) the argument to printf() decays to a pointer
*/
printf(" === \n");
return 0;
}
}
#include <stdio.h>
int main(void)
{
puts(" --- ")
return 0;
}
--
Lew Pitcher
Master Codewright & JOAT-in-training | Registered Linux User #112576
http://pitcher.digitalfreehold.ca/ | GPG public key available by request
---------- Slackware - Because I know what I'm doing. ------
Comment