How to add two numbers without using semicolon n c????
Answer Posted / guest
int main()
{
return(5+6);
}
| Is This Answer Correct ? | 7 Yes | 11 No |
Post New Answer View All Answers
What is a union?
How can my program discover the complete pathname to the executable from which it was invoked?
What are shell structures used for?
What is a function simple definition?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
Can you apply link and association interchangeably?
What is the difference between malloc calloc and realloc in c?
What functions are used for dynamic memory allocation in c language?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
What is structure data type in c?
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
Can we change the value of #define in c?
What is the difference between Printf(..) and sprint(...) ?
What is union and structure in c?
What’s a signal? Explain what do I use signals for?