is compiler do read the data line by line or not.
??
Answer Posted / ankith.v
It Reads The Data Line by Line
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
write an algorithm to display a square matrix.
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
Can a pointer be volatile in c?
What are the disadvantages of external storage class?
How does free() know explain how much memory to release?
What is void main ()?
What is a static function in c?
if p is a string contained in a string?
What are the types of assignment statements?
Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
Are there constructors in c?
Is fortran still used today?
What is the use of parallelize in spark?
praagnovation