main()
{
int i,j,A;
for(A=-1;A<=1;A++)
prinf("%d\t",!!A);
}
Answer Posted / y hussain reddy
1 0 1
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
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 “****”.
What is the purpose of 'register' keyword?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
Is python a c language?
Can you add pointers together? Why would you?
Array is an lvalue or not?
How many data structures are there in c?
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
any function have arguments one or more OR not . it is compulsary a) any function compulsary have one or more arguments b) any function did not have arguments. It is not compulsary c) it is optional it is not compulsary d) none of the above
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
What is a function in c?
How do you print only part of a string?
What are the advantages of union?
Write a program to print numbers from 1 to 100 without using loop in c?
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array