Endless Paradigm

Full Version: Help me in c
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi Everyone,
Can you give me some good Example?
This Example will print the Hello without using printf.
It is possible.
Can you help me?
Is there any point?
roberth Wrote:http://lmgtfy.com/?q=print+without+using+printf

↑↑↑

C Code
#include <stdio>
#include <iostream>

int main()
{
    puts("Hello World");
    getch();
}


http://www.cprogramming.com/fod/puts.html

Sigh

Reference URL's