printf("%d",(printf("Hello")); What it returns?

Answer Posted / varun

error bcz 1 bracket is missing.
if corected
output will b

Hello5

Is This Answer Correct ?    12 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

List the difference between a 'copy constructor' and a 'assignment operator' in C?

629


What's the difference between constant char *p and char * constant p?

648


Differentiate between calloc and malloc.

745


Write a Program to find whether the given number or string is palindrome.

603


What is pointer to pointer in c?

624






what will be maximum number of comparisons when number of elements are given?

1398


What is time null in c?

570


What is the best organizational structure?

633


what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above

661


simple program of graphics and their output display

1458


If the size of int data type is two bytes, what is the range of signed int data type?

578


struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer

752


Explain how can I prevent another program from modifying part of a file that I am modifying?

627


What is the difference between malloc() and calloc()?

607


Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?

590