Hello there.
<span>A(n) _____ is any hardware component that allows you to enter data and instructions into a computer or mobile device.
</span><span>Input Device</span>
It is true because it is really a good practise to save a presentation before printing it
Answer:
We use it everyday for all sorts of stuff
Explanation:
Answer:
#include<stdio.h>
#include<string.h>
int main(){
char str[20];
int i=0;
printf("Enter a name: ");
gets(str);
printf("%c",*str);
while(str[i]!='\0'){
if(str[i]==' '){
i++;
printf("%c",*(str+i));
}
i++;
}
return 0;
}
Explanation: