Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Wiki Markup
{code}
Code Block
#include <stdio.h>

int main()
{
	int muuttuja1;
	int m2;

	muuttuja1 = 3;
	printf("Tämä on teksti\n");
	printf("%d", muuttuja1);
}
{code}