print a "hello" word without using printf n puts in c language
Answer Posted / smith
#include<stdio.h>
#include<string.h>
void main()
{
printf("hello");
puts("hello");
}
| Is This Answer Correct ? | 3 Yes | 23 No |
Post New Answer View All Answers
Explain what is the benefit of using #define to declare a constant?
What are the different types of linkage exist in c?
Explain is it better to bitshift a value than to multiply by 2?
What is getch?
What is type qualifiers?
What are the types of data files?
what is the basis for selection of arrays or pointers as data structure in a program
What header files do I need in order to define the standard library functions I use?
What are header files? What are their uses?
write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.
What are the usage of pointer in c?
What is pointer to pointer in c with example?
What is the difference between break and continue?
How can you tell whether a program was compiled using c versus c++?
What is s in c?