Define C in your own Language.
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between %d and %*d in C
Here is a neat trick for checking whether two strings are equal
How to write in a function declaration and in function call in which the function has 'n' number of varible or arguments?
What is the value of 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 “****”.
What are pointers? What are different types of pointers?
In the following code segment what will be the result of the function, value of x , value of y { unsigned int x=-1; int y; y = ~0; if(x == y) printf("same"); else printf("not same"); } a) same, MAXINT, -1 b) not same, MAXINT, -MAXINT c) same , MAXUNIT, -1 d) same, MAXUNIT, MAXUNIT e) not same, MAXINT, MAXUNIT
What is an volatile variable?
What are the advantages of union?
write function to reverse char array ... without using second array
String concatenation
If the static variable is declared as global, will it be same as extern?