Jump to content

Talk:Block (programming)

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by R'n'B (talk | contribs) at 20:18, 27 October 2009 (moved Talk:Statement block to Talk:Block (programming): Simpler title, per WP:NC). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

int main(){ int x,y,sum; clrscr(); { sum=x+y; printf("Enter First number"); scanf("%d", $x); printf("Enter Second number"); scanf("%d", &y); ans == sum; return (0); }