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";
56 echo "\n\n*** Output for float type ***\n";
57 echo "\n Input Float numbers variation array is:\n";
62 echo "\n\nFloat Iteration $counter";
65 echo "\n";
75 echo "\n\n*** Output for integer type ***\n";
76 echo "\n Input Integer numbers variation array is:\n";
81 echo "\n\nInteger Iteration $counter";
84 echo "\n";
93 echo "\n\n*** Output for binary type ***\n";
94 echo "\n Input numbers variation array is:\n";
99 echo "\n";
105 echo "\n\n*** Output for char type ***\n";
106 echo "\n Input Characters variation array is:\n";
111 echo "\n";
116 echo "\n\n*** Output for scientific type ***\n";
117 echo "\n Input numbers variation array is:\n";
122 echo "\n";
127 echo "\n\n*** Output for unsigned integer type ***\n";
128 echo "\n Input Integer numbers variation array is:\n";
133 echo "\n";
138 echo "\n\n*** Output for octal type ***\n";
139 echo "\n Input numbers variation array is:\n";
144 echo "\n";
149 echo "\n\n*** Output for hexadecimal type ***\n";
150 echo "\n Input numbers variation array is:\n";
155 echo "\n";
160 echo "\n\n*** Output for string type ***\n";
161 echo "\n Input Strings format variation array is:\n";
163 echo "\n Input strings variation array is:\n";
170 echo "\n";
179 echo "\n\n*** Output for '%g' type ***\n";
180 echo "\n Input format variation array is:\n";
185 printf("\n$formatg",123456);
186 printf("\n$formatg",-123456);
195 echo"\n\n*** Output for '%%%.2f' as the format parameter ***\n";
198 echo"\n\n*** Output for '%%' as the format parameter ***\n";
201 echo"\n\n*** Output for precision value more than maximum ***\n";
204 echo"\n\n*** Output for invalid width(-15) specifier ***\n";
211 echo"\n\n*** Output for '%F' as the format parameter ***\n";
214 echo"\n\n*** Output for '%X' as the format parameter ***\n";
217 echo"\n\n*** Output with no format parameter ***\n";
220 echo"\n\n*** Output for multiple format parameters ***\n";
221 printf("%d %s %d\n", $tempnum, $tempstring, $tempnum);
223 echo"\n\n*** Output for excess of mixed type arguments ***\n";
226 echo"\n\n*** Output for string format parameter and integer type argument ***\n";
229 echo"\n\n*** Output for integer format parameter and string type argument ***\n";