Content deleted Content added
No edit summary Tags: Visual edit Mobile edit Mobile web edit |
|||
Line 1:
main()
{{Programming paradigms}}▼
{
int A,B,T;
printf("PLEASE ENTER ANY TWO NUMBER A AND B=");
scanf("%d%d",&A,&B);
Printf("ORIGINAL VALUE OF B=%d",B);
Printf("\nORIGINAL VALUE OF A=%d",A);
T=A;
T=B;
Printf("\nNEW VALUE OF A =%d",A;
Printf("\nNEW VALUE OF B =%d",B);
▲}{{Programming paradigms}}
In [[computer science]], the term '''automatic programming'''<ref>Ricardo Aler Mur, "[http://www.evannai.inf.uc3m.es/et/icml06/aiptutorial.htm Automatic Inductive Programming] {{Webarchive|url=https://web.archive.org/web/20160304073124/http://www.evannai.inf.uc3m.es/et/icml06/aiptutorial.htm |date=2016-03-04 }}", ''ICML 2006 Tutorial''. June 2006.</ref> identifies a type of [[computer programming]] in which some mechanism generates a [[computer program]] to allow human [[programmer]]s to write the code at a higher abstraction level.
|