This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "stdio.h" | |
#include "stdlib.h" | |
#define LINE_LIMIT 100 | |
int main(int argc, char** argv) | |
{ | |
int lineSize = 0, | |
lineCount = 0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/********************************************************** | |
* Ponteiros em C by ~rcaldasmd~ * | |
* * | |
* Alguns bons exemplos sobre como utilizar ponteiros em C * | |
**********************************************************/ | |
#include <stdio.h> | |
/*************** VARS ****************/ |