Write C program to print without printf ()

Aadit Kapoor

Aadit Kapoor

@aadit-kapoor-EBxnXT Oct 26, 2024
write a program to print a message without using printf() function in c.

Replies

Welcome, guest

Join CrazyEngineers to reply, ask questions, and participate in conversations.

CrazyEngineers powered by Jatra Community Platform

  • Vishal Sharma

    Vishal Sharma

    @vishal-pysGmK Dec 13, 2013

    You taking my viva? 😛

    #include<stdio.h>
    int main() {
        fputs("hell",stdout);
        return 0;
    }
  • Kaustubh Katdare

    Kaustubh Katdare

    @thebigk Dec 13, 2013

    Maybe we should attempt to write this code in various programming languages (without using the most common output/print functions)? Makes sense?
  • Vishal Sharma

    Vishal Sharma

    @vishal-pysGmK Dec 14, 2013

    Kaustubh Katdare
    Maybe we should attempt to write this code in various programming languages (without using the most common output/print functions)? Makes sense?
    @echo off
    echo hello 
    that's in batch!