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
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
What are identifiers c?
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
What is the purpose of the statement: strcat (S2, S1)?
Which header file should you include if you are to develop a function which can accept variable number of arguments?
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
What is the condition that is applied with ?: Operator?
Are there constructors in c?
What is meant by recursion?
Write the control statements in C language
What are the two types of structure?
What is difference between structure and union in c programming?