top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How to write a C program for displaying a sentence without output command?

–2 votes
397 views
How to write a C program for displaying a sentence without output command?
posted Feb 27, 2014 by Bhani Bhosle

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

Use return type in the function and call it in the main program. We can see thee output without using any output command.
or
In this way:

void display()
{
printf("kishore reddy");
}
save program in file and save it as filename.h and run it.

answer Feb 27, 2014 by Iti Jindal
Similar Questions
+1 vote

How to write a c program for data signaling rate for four signals? Data signaling rate formula should be written in c language as formula cannot be inserted?

+4 votes
                                      *
                                     * *
                                    * * *
                                   * * * *
                                  * * * * * 
                                 * * * *     

I above Ouput I Missed two stars.My question is how to find out the remaining stars.Please tel me in the C programming way.

...