Lines Matching refs:n

30 echo "\n*** Output for zero argument ***\n";
34 echo $e->getMessage(), "\n";
38 echo "\n*** Output for insufficient number of arguments ***\n";
50 echo "\n*** Output for scalar argument ***\n";
54 echo "\n*** Output for NULL as argument ***\n";
61 echo "\n\n*** Output for float type ***\n";
62 echo "\n Input Float numbers variation array is:\n";
67 echo "\n\nFloat Iteration $counter";
70 echo "\n";
80 echo "\n\n*** Output for integer type ***\n";
81 echo "\n Input Integer numbers variation array is:\n";
86 echo "\n\nInteger Iteration $counter";
89 echo "\n";
98 echo "\n\n*** Output for binary type ***\n";
99 echo "\n Input numbers variation array is:\n";
104 echo "\n";
110 echo "\n\n*** Output for char type ***\n";
111 echo "\n Input Characters variation array is:\n";
116 echo "\n";
121 echo "\n\n*** Output for scientific type ***\n";
122 echo "\n Input numbers variation array is:\n";
127 echo "\n";
132 echo "\n\n*** Output for unsigned integer type ***\n";
133 echo "\n Input Integer numbers variation array is:\n";
138 echo "\n";
143 echo "\n\n*** Output for octal type ***\n";
144 echo "\n Input numbers variation array is:\n";
149 echo "\n";
154 echo "\n\n*** Output for hexadecimal type ***\n";
155 echo "\n Input numbers variation array is:\n";
160 echo "\n";
165 echo "\n\n*** Output for string type ***\n";
166 echo "\n Input Strings format variation array is:\n";
168 echo "\n Input strings variation array is:\n";
175 echo "\n";
184 echo "\n\n*** Output for '%g' type ***\n";
185 echo "\n Input format variation array is:\n";
190 printf("\n$formatg",123456);
191 printf("\n$formatg",-123456);
200 echo"\n\n*** Output for '%%%.2f' as the format parameter ***\n";
203 echo"\n\n*** Output for '%%' as the format parameter ***\n";
206 echo"\n\n*** Output for precision value more than maximum ***\n";
209 echo"\n\n*** Output for invalid width(-15) specifier ***\n";
216 echo"\n\n*** Output for '%F' as the format parameter ***\n";
219 echo"\n\n*** Output for '%X' as the format parameter ***\n";
222 echo"\n\n*** Output with no format parameter ***\n";
225 echo"\n\n*** Output for multiple format parameters ***\n";
226 printf("%d %s %d\n", $tempnum, $tempstring, $tempnum);
228 echo"\n\n*** Output for excess of mixed type arguments ***\n";
231 echo"\n\n*** Output for string format parameter and integer type argument ***\n";
234 echo"\n\n*** Output for integer format parameter and string type argument ***\n";