general for is %wd,f-d; in this system "w" means
a) 'w' represent total width of digits
b) 'w' represent width which includes the digits before,after decimal place and the decimal point
c) 'w' represent width which includes the digits before only
d) 'w' represent width after decimal place only
No Answer is Posted For this Question
Be the First to Post Answer
Which of the following are valid "include" formats? A)#include and #include[file.h] B)#include (file.h) and #include C)#include [file.h] and #include "file.h" D)#include <file.h> and #include "file.h"
what is the program to display your name in any color?
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
What header files do I need in order to define the standard library functions I use?
What are the types of variables in c?
Can include files be nested? How many levels deep can include files be nested?
declare afunction pointer to int printf(char *)?
Differentiate fundamental data types and derived data types in C.
how to use virual function in real time example
Result of the following program is main() { int i=0; for(i=0;i<20;i++) { switch(i) case 0:i+=5; case 1:i+=2; case 5:i+=5; default i+=4; break;} printf("%d,",i); } } a)0,5,9,13,17 b)5,9,13,17 c)12,17,22 d)16,21 e)syntax error
What do header files do?
How can you find the exact size of a data type in c?