Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

what is printf

Answer Posted / naresh

printf is used to print the content to standard output.
this is a predefined function in C.It is included in stdio.h
library

Is This Answer Correct ?    7 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What extern c means?

999


What the advantages of using Unions?

1229


What are the advantages of c preprocessor?

1259


Is the exit() function same as the return statement? Explain.

1100


What is scope and lifetime of a variable in c?

1059


How can I do serial ("comm") port I/O?

1181


Can the curly brackets { } be used to enclose a single line of code?

1170


What is the mean of function?

1126


which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above

1721


How to implement a packet in C

2885


i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none

1064


What is pointer to pointer in c with example?

1073


How can I sort a linked list?

1047


What will be the outcome of the following conditional statement if the value of variable s is 10?

1285


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

1298