the maximum length of a character constant can be
a) 1 character
b) 8 characters
c) 256 chaacters
d) 125 characters
No Answer is Posted For this Question
Be the First to Post Answer
What is the purpose of type declarations?
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 “****”.
Explain enumerated types in c language?
read a number & print all its devisors using c-program?
WHAT IS MEANT BY LIFE?
How do we print only part of a string in c?
What is the purpose of the preprocessor directive error?
What functions are in conio h?
Explain data types & how many data types supported by c?
Explain what is the difference between text files and binary files?
What is the difference between declaring a variable by constant keyword and #define ing that variable?
what will be the output of the following program, justify? #define TEST int TEST getdata() { static i; i+=10; return i; } main() { int k; k = getdata(); }