What is the difference between printf and scanf in c?
No Answer is Posted For this Question
Be the First to Post Answer
What does node * mean?
How to reverse alternate words in a given line of string For Eg: my name is narasimha output : my eman is ahmisaran
Does c have circular shift operators?
What are the benefits of c language?
How can we allocate array or structure bigger than 64kb?
a memory of 20 bytes is allocated to a string declared as char *s then the following two statements are executed: s="Etrance" l=strlen(s); what is the value of l ? a.20 b.8 c.9 d.21
List out few of the applications that make use of Multilinked Structures?
Three major criteria of scheduling.
How can I implement a delay, or time a users response, with sub-second resolution?
What is the difference between a structure and a union?
what wud be the output? main() { char *str[]={ "MANISH" "KUMAR" "CHOUDHARY" }; printf("\nstring1=%s",str[0]); printf("\nstring2=%s",str[1]); printf("\nstring3=%s",str[2]); a)string1=Manish string2=Kumar string3=Choudhary b)string1=Manish string2=Manish string3=Manish c)string1=Manish Kumar Choudhary string2=(null) string3=(null) d)Compiler error
a character variable can at a time store a) 1 character b) 8 characters c) 254 characters d) none of the above