Lines Matching refs:n

30 echo "\n*** Output for zero argument ***\n";
34 echo "\n*** Output for insufficient number of arguments ***\n";
42 echo "\n*** Output for scalar argument ***\n";
46 echo "\n*** Output for NULL as argument ***\n";
53 echo "\n\n*** Output for float type ***\n";
54 echo "\n Input Float numbers variation array is:\n";
59 echo "\n\nFloat Iteration $counter";
62 echo "\n";
72 echo "\n\n*** Output for integer type ***\n";
73 echo "\n Input Integer numbers variation array is:\n";
78 echo "\n\nInteger Iteration $counter";
81 echo "\n";
90 echo "\n\n*** Output for binary type ***\n";
91 echo "\n Input numbers variation array is:\n";
96 echo "\n";
102 echo "\n\n*** Output for char type ***\n";
103 echo "\n Input Characters variation array is:\n";
108 echo "\n";
113 echo "\n\n*** Output for scientific type ***\n";
114 echo "\n Input numbers variation array is:\n";
119 echo "\n";
124 echo "\n\n*** Output for unsigned integer type ***\n";
125 echo "\n Input Integer numbers variation array is:\n";
130 echo "\n";
135 echo "\n\n*** Output for octal type ***\n";
136 echo "\n Input numbers variation array is:\n";
141 echo "\n";
146 echo "\n\n*** Output for hexadecimal type ***\n";
147 echo "\n Input numbers variation array is:\n";
152 echo "\n";
157 echo "\n\n*** Output for string type ***\n";
158 echo "\n Input Strings format variation array is:\n";
160 echo "\n Input strings variation array is:\n";
167 echo "\n";
176 echo "\n\n*** Output for '%g' type ***\n";
177 echo "\n Input format variation array is:\n";
182 printf("\n$formatg",123456);
183 printf("\n$formatg",-123456);
192 echo"\n\n*** Output for '%%%.2f' as the format parameter ***\n";
195 echo"\n\n*** Output for '%%' as the format parameter ***\n";
198 echo"\n\n*** Output for precision value more than maximum ***\n";
201 echo"\n\n*** Output for invalid width(-15) specifier ***\n";
204 echo"\n\n*** Output for '%F' as the format parameter ***\n";
207 echo"\n\n*** Output for '%X' as the format parameter ***\n";
210 echo"\n\n*** Output with no format parameter ***\n";
213 echo"\n\n*** Output for multiple format parameters ***\n";
214 printf("%d %s %d\n", $tempnum, $tempstring, $tempnum);
216 echo"\n\n*** Output for excess of mixed type arguments ***\n";
219 echo"\n\n*** Output for string format parameter and integer type argument ***\n";
222 echo"\n\n*** Output for integer format parameter and string type argument ***\n";