Answer:
No but my baby brother can play with u
Exel is used for graphing, Word for any type of essay or paper, and Powerpoint for presentations.
Hope this helps!
Answer:
A
Explanation:
I am not 100% sure but without the shaping data, data can still be merged from multiple sources.
Answer:
error: incompatible types
Explanation:
Given
The attached code
Required
The output
Variable "a" is declared as float
While p is declared as a pointer to an integer variable
An error of incompatible types will be returned on line 3, <em>int *p = a;</em>
Because the variables are not the same.
To assign a to p*, we have to use type casting.
Hence, (b) is correct