#include void function(int a, int b, int c) { char buffer1[8]; char buffer2[8]; // read user input into the buffer scanf("%s",buffer1); } int main() { int x; x = 0; function(1,2,3); x = 1; printf("%d\n",x); return 0; }