Answer Posted / ram
Hello5 is the answer because the inside printf prints the
string and printf returns the no of charters pinted on the
screen so it is 5.
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
What is the difference between malloc() and calloc() function in c language?
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 bubble sort technique in c?
What is the difference between test design and test case design?
What is the right type to use for boolean values in c? Is there a standard type?
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
Can a variable be both constant and volatile?
What is the advantage of a random access file?
In a byte, what is the maximum decimal number that you can accommodate?
What is difference between arrays and pointers?
Are the outer parentheses in return statements really optional?
Why c is procedure oriented?
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..