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

Answer Posted / srinivasa. p

Hello5

Printf() return number character print on STD::out

Is This Answer Correct ?    30 Yes 10 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are header files in c programming?

651


What is operator precedence?

637


What does stand for?

589


Explain the advantages of using macro in c language?

570


write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.

1979






Can we increase size of array in c?

534


in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above

590


What does %2f mean in c?

672


What are the types of c language?

549


What is array of structure in c programming?

745


What is a null string in c?

579


using for loop sum 2 number of any 4 digit number in c language

1725


What are the various types of control structures in programming?

622


find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }

1855


Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.

2653