Skip to content

Latest commit

 

History

History

0x08-pointer_arithmetic

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

Pointer Arithmetic

  • Projects done during my study of Harvard University's cs50, an introduction to the intellectual enterprises of computer science and the art of programming.

Technologies

  • Files written in Visual Studio Code 1.73 editor.
  • C files compiled using gcc 9.4.0.
  • C files wriiten according to the betty coding style.
  • Files tested on Windows 10 using gcc.

Files

File Description
0-pointer.c using pointer arithmetics to print addresses of the charcters in the string.
1-pointer.c using pointer arithmetics to print addresses of the numbers in the list of numbers.
2-int_compare.c A C program that uses pointers to comapre 2 integers and print Same or Difference.
3-compare_strings.c A C program that uses pointers to comapre 2 strings and print Same or Difference.
4-copy.c A C program that copies the characters of one string to the other.