Advertisement
FuncaosCAndCPluplus

Function_is_puts

Aug 16th, 2016
2,853
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <iostream>
  4. #include <string.h>
  5. using namespace std;
  6.    
  7. int main() {
  8.          
  9.    char a [] = "Imprime uma string em um dispositivo de saida";
  10.    
  11.    puts(a);
  12.    
  13.    return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement