progs/C0.c
author Christian Urban <christian dot urban at kcl dot ac dot uk>
Thu, 15 Dec 2016 16:11:05 +0000
changeset 502 66d2bc189b88
parent 467 da4896f201b5
permissions -rw-r--r--
merged

#include <string.h>
#include <stdio.h>

void foo (char *bar)
{
   long my_long = 101010101; // in hex: \xB5\x4A\x05\x06
   char buffer[28];        

   printf("my_long value = %lu\n", my_long);
   strcpy(buffer, bar);    
   printf("my_long value = %lu\n", my_long);
}
 
int main (int argc, char **argv)
{
  foo("my string is too long !!!!!");    
  return 0;
}