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 why C language is procedural?
Do you know the use of fflush() function?
How do you view the path?
Explain what are the different file extensions involved when programming in c?
Explain what is the difference between functions getch() and getche()?
What are 3 types of structures?
What is omp_num_threads?
What is the difference between array and structure in c?
Why is c called "mother" language?
Is c call by value?
In which header file is the null macro defined?
find out largest elemant of diagonalmatrix
Should I learn c before c++?
What is the difference between memcpy and memmove?
What is the advantage of an array over individual variables?