write a c program to print "Welcome" without using semicolon
in the whole program ??
Answer Posted / sandip kundu
#include<stdio.h>
#include<conio.h>
void main()
{
if(printf ("hi"))
getch();
}
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
What are global variables and explain how do you declare them?
What does %p mean?
What are shell structures used for?
What is calloc()?
What is fflush() function?
How do you search data in a data file using random access method?
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
What is dynamic memory allocation?
When should a type cast be used?
Why is a semicolon (;) put at the end of every program statement?
What is linear search?
Can the “if” function be used in comparing strings?
What is spaghetti programming?
Differentiate between the expression “++a” and “a++”?