can we print any string in c language without using
semicolon(;)(terminator) in whole program.
Answer Posted / k satish kumar reddy
main()
{
switch(printf("hello "))
{
}
}
Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
How main function is called in c?
How can I invoke another program or command and trap its output?
What are the features of c language?
What is bubble sort technique in c?
What is the difference between array and pointer?
Explain how can I prevent another program from modifying part of a file that I am modifying?
How many types of operators are there in c?
Why header file is used in c?
How can I direct output to the printer?
Is c easy to learn?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
What are the loops in c?
How can I trap or ignore keyboard interrupts like control-c?
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above
Can math operations be performed on a void pointer?