Write an algorithm, in the form of a C-Language?
- Values of integer & character variables.
Solution
#include <stdio.h>
int main()
{
int n=10;
char ch = '*';
printf("Testing output...");
printf("%d",n);
printf("%c",ch);
return 0;
}
#include <stdio.h>
int main()
{
int n=10;
char ch = '*';
printf("Testing output...");
printf("%d",n);
printf("%c",ch);
return 0;
}
Contact to solve your problems Click here