Skip to content

Instantly share code, notes, and snippets.

@utkumalkocoglu
Created March 12, 2014 13:46
Show Gist options
  • Save utkumalkocoglu/9507239 to your computer and use it in GitHub Desktop.
Save utkumalkocoglu/9507239 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main()
{
int x,y;
printf("x değerini giriniz:");
scanf("%d",&x);
y=((((3*x+2)*x-5)*x-1)*x+7)*x-6;
printf("İşlemin Sonucu %d dir.", y);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment