printf("%d",(printf("Hello")); What it returns?
Answer Posted / sangeetha
the inner printf statement will print Hello but the outer
printf is %d it will print an integer but we didnt call the
value it will give u the garbage value.and the output of the
program will be hello5.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Why is c still so popular?
Is main a keyword in c?
If the size of int data type is two bytes, what is the range of signed int data type?
What is the difference between malloc() and calloc() function in c language?
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
Which header file is essential for using strcmp function?
What is a global variable in c?
Explain how can type-insensitive macros be created?
Why n++ execute faster than n+1 ?
What is the time and space complexities of merge sort and when is it preferred over quick sort?
How do we print only part of a string in c?
Explain what is meant by high-order and low-order bytes?
Suppose we have a table name EMP as below. We want to perform a operation in which, I want to change name ‘SMITH’ from as ‘SMITH JAIN’. Also I want to change the name of the column from ENAME to E_NAME. EMPNO ENAME JOB MGR HIREDATE SAL 7369 SMITH Coder 7902 17-DEC-80 800 7499 ALLEN SALESMAN 7698 20-FEB-81 1600 7521 WARD SALESMAN 7698 22-FEB-81 1250
What is getch?
How do I convert a string to all upper or lower case?