#include<stdio.h>
int main()
{
int a = 115; //integer variable a is initialised
putchar(a); //reads the ascii value of 115
getchar(); //waits for the character input
return 0; //normal termination
}
int main()
{
int a = 115; //integer variable a is initialised
putchar(a); //reads the ascii value of 115
getchar(); //waits for the character input
return 0; //normal termination
}
0 comments:
Post a Comment