Answer Posted / radha
dennis ritche
| Is This Answer Correct ? | 29 Yes | 6 No |
Post New Answer View All Answers
How can I determine whether a machines byte order is big-endian or little-endian?
What is difference between %d and %i in c?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
What is a sequential access file?
What is page thrashing?
how to capitalise first letter of each word in a given string?
What is sizeof int?
Explain what are the advantages and disadvantages of a heap?
What are actual arguments?
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
Are enumerations really portable?
Is c a great language, or what?
What is zero based addressing?
What is a static variable in c?
write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)