a character variable can at a time store

a) 1 character

b) 8 characters

c) 254 characters

d) none of the above

Answer Posted / tanmoy bhandari

1 character

Is This Answer Correct ?    3 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Lists the benefits of c programming language?

600


What is the size of array float a(10)?

659


What are the back slash character constants or escape sequence charactersavailable in c?

691


When should a far pointer be used?

607


write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays

1788






Explain the process of converting a Tree into a Binary Tree.

2109


What is the use of header files?

610


praagnovation

1781


Why do some versions of toupper act strangely if given an upper-case letter?

636


What is scope and lifetime of a variable in c?

582


Write a client and server program in C language using UDP, where client program interact with the Server as given below: i) The client begins by sending a request to send a string of 8 characters or series of 7 numbers, the server sends back a characters or numbers as per the request of the client. ii) In case of series of 7 numbers: The client sends a multiplication of numbers, to the server. iii) In case of a string of 8 characters: The client sends a reverse order of string to the server.. iv) Server will send an acknowledgment to the client after receiving the correct answer

3846


diff between exptected result and requirement?

1597


How is = symbol different from == symbol in c programming?

618


What is nested structure with example?

629


.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }

2004