can we print any string in c language without using
semicolon(;)(terminator) in whole program.
Answer Posted / nitish_bhasin
#include<stdio.h>
void main()
{
if(printf("Hello")){}
}
| Is This Answer Correct ? | 54 Yes | 11 No |
Post New Answer View All Answers
Badboy is defined who has ALL the following properties: Does not have a girlfriend and is not married. He is not more than 23 years old. The middle name should be "Singh" The last name should have more than 4 characters. The character 'a' should appear in the last name at least two times. The name of one of his brothers should be "Ram" Write a method: boolean isBadBoy(boolean hasGirlFriend , boolean isMarried, int age , String middleName , String lastName , String[] brotherName); isHaveGirlFriend is true if the person has a girlfriend isMarried is true if the person is married age is the age of the person middleName is the middle name of the person lastName is the last name of the person brotherName is the array of the names of his brothers
Is null always defined as 0(zero)?
Explain what is wrong with this statement? Myname = ?robin?;
Is c procedural or object oriented?
What are the advantages of Macro over function?
What is use of bit field?
How does selection sort work in c?
What is the purpose of & in scanf?
How does free() know explain how much memory to release?
Is there a way to jump out of a function or functions?
How many keywords are there in c?
Write a program to identify if a given binary tree is balanced or not.
Write a program to find factorial of a number using recursive function.
Explain how do you override a defined macro?
Explain goto?