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


Please Help Members By Posting Answers For Below Questions

Explain continue keyword in c

581


Can you pass an entire structure to functions?

693


What is Dynamic memory allocation in C? Name the dynamic allocation functions.

554


What are the 4 types of programming language?

579


Why do we use null pointer?

603






how to write optimum code to divide a 50 digit number with a 25 digit number??

2751


What will the preprocessor do for a program?

587


What is variable declaration and definition in c?

500


How can I make sure that my program is the only one accessing a file?

677


What are the two types of structure?

570


Explain #pragma statements.

601


Why does the call char scanf work?

617


Write a program to check whether a number is prime or not using c?

572


Do you know the difference between malloc() and calloc() function?

610


Write a program to print “hello world” without using semicolon?

670