Giter VIP home page Giter VIP logo

printf's Introduction

I'm Karima, a software engineer student at Alx Africa from Tangier, Morocco.

I'm primarily interested in full-stack development, artificial intelligence, human-computer interactions, and everything in between.

Let's connect!

Medium LinkedIn


Karima's GitHub stats Karima's most used languages

Karima's visitors Karima's followers Karima's stars

printf's People

Contributors

ayoubelmohamedi avatar karimatouhami avatar

Watchers

 avatar

printf's Issues

were you trying to check if str is null ?

the curley braces {} seems useless here,
https://github.com/KarimaTouhami/Printf/blob/9df9a27dc21d344c102cef40f3d08749096e63ab/_printf.c#L43C6-L43C6
I been wondering whether we should check if the string is null first?
here is an example:

`
int printf_string(va_list val)
{
char *s;
int i, len;

s = va_arg(val, char *);
if (s == NULL)
{
	s = "(null)";
	len = _strlen(s);
	for (i = 0; i < len; i++)
		_putchar(s[i]);
	return (len);
}
else
{
	len = _strlen(s);
	for (i = 0; i < len; i++)
		_putchar(s[i]);
	return (len);
}

}
`

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.