How will we know what's right, if we do not know what's wrong?

The Awakener | Motivational Poems, Quotes, Essays, Prayers, Sayings

December 9, 2009 Leave a comment
Categories: randomixed

tanong tungkol sa kinukulayang pahayag

December 6, 2009 Leave a comment
Emma Watson - by ursulakm - on Flickr (click to expand)

photo by ursulakm

If I say that french bread Nicole Lagumbayan – or Jahziel Baleje for that matter (or a large number of my friends) – is beautiful, will that mean anything different other than what it does?

.

Nagtatanong lang…

Categories: mtquestions

what’s your age in 2020 [c]

December 3, 2009 Leave a comment

#include <stdio.h>
//this program will compute for the age of the user in 2020, assuming that 2009 is the present year
void main() {
 char name[20];
 int a09 = 0, a20 = 0;
 printf("\nEnter your name, and your age at present(2009): ");
 scanf("%s %d", &name, &a09);
 a20 = a09 + 11;
 printf("%s, you will be %d years old in 2020.", name, a20);
 printf("\n(press any key to exit)");
 getch();
}
Categories: ccodes