main()
{
printf("hello%d",print("QUARK test?"));
}

Answer Posted / vanitha

QUARK test? hello 11

Is This Answer Correct ?    1 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are high level languages like C and FORTRAN also known as?

674


What is function what are the types of function?

552


How can I open files mentioned on the command line, and parse option flags?

583


What is #include cctype?

571


Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]

621






What is integer constants?

606


Can static variables be declared in a header file?

606


What is the use of putchar function?

644


How #define works?

607


Is calloc better than malloc?

565


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)

1617


How can I do graphics in c?

586


What does the characters “r” and “w” mean when writing programs that will make use of files?

848


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.

1189


What is the purpose of scanf() and printf() functions?

711