Advertisement
AntonioVillanueva

Lista de argumentos variable en funciones

Jul 21st, 2016
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 2.37 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <assert.h>
  3. #include <stdlib.h>
  4. #include <stdarg.h>
  5. int myprint(const char *fmt, ... )
  6. {
  7.  
  8. const char *p;
  9.     va_list argp;
  10.     int i;
  11.     int integers=0;
  12.     //char *s;
  13.     //char fmtbuf[256];
  14.  
  15.     va_start(argp, fmt);
  16.  
  17.     for(p = fmt; *p != '\0'; p++){
  18.        
  19.         if(*p != '&')
  20.         {
  21.             printf ("%c",*p);
  22.             continue;
  23.         }else {
  24.             i = va_arg(argp, int);
  25.             printf ("%d",i);
  26.             integers++;
  27.         }
  28.  
  29.     }
  30.    
  31.     va_end(argp);
  32.     return integers;
  33. };
  34.  
  35.  
  36. int main(void)
  37. {
  38.     myprint("Hello!\n");
  39.  
  40.     myprint("Number: &\n", 5);
  41.     myprint("Number one: &, number two: &\n", 120, 1345);
  42.     int ret = myprint("Three numbers: & & &\n", 12, 444, 5555);
  43.     myprint("I just printed & integers\n", ret);
  44.  
  45. }
  46.  
  47. /*
  48.  
  49.  
  50. Objective: Learn variable length argument lists
  51.  
  52. Implement function myprint that prints a variable number of integers to standard output stream following the format
  53. indicated by a given format string.
  54. The function can take variable number of arguments:
  55.  the first argument is always a (constant) format string (as in printf),
  56.  but the number of other arguments depends on the format string.
  57.  
  58.  Our output function is a simpler version of printf: it can only print integers.
  59.  myprint differs from traditional printf by using character & as the format specifier
  60.  that should be substituted by the integer indicated at the respective position in the argument list.
  61.   Because we only output integers, this simple format specifier will suffice.
  62.  
  63. For example, this is one valid way of calling the function: myprint("Number one: &, number two: &\n", 120, 1345);
  64.  
  65. The function should return an integer, that indicates how many format specifiers (and integer arguments) were included in the given format string.
  66.  
  67. In this exercise you will get just empty C source files to fill in. Read the above description (and main.c) carefully to figure out how the function prototype should look like. You'll need to modify both myprint.c and myprint.h.
  68.  
  69. If your implementation works correctly, the default main function (in main.c) should output the following:
  70.  
  71. Hello!
  72. Number: 5
  73. Number one: 120, number two: 1345
  74. Three numbers: 12 444 5555
  75. I just printed 3 integers
  76.  
  77. Hint: As a reminder, strchr will return pointer to the next instance of given character from a string, and fputc will output one character at a time. You may or may not want to use these functions.
  78.  
  79. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement