write a c program to print "Welcome" without using semicolon
in the whole program ??
Answer Posted / manoj srivastava
#include<stdio.h>
#include<conio.h>
void main(void)
{
if(printf("welcome"))
{}
}
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
How important is structure in life?
When c language was developed?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)
How to find a missed value, if you want to store 100 values in a 99 sized array?
What are enumerated types?
What is ambagious result in C? explain with an example.
Is there a built-in function in C that can be used for sorting data?
Can you write the algorithm for Queue?
What are variables and it what way is it different from constants?
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
What are linker error?
What is a nested loop?
What does the file stdio.h contain?
Is multithreading possible in c?