Is fortran still used today?
No Answer is Posted For this Question
Be the First to Post Answer
What is the most efficient way to store flag values?
Does c have function or method?
What are volatile variables?
struct node { int *a; char *b; char array[12]; }; struct node m,*n; assign the value in *a,*b,char array[12]
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
What does typedef struct mean?
What are the features of c language?
to get a line of text and count the number of vowels in it
Explain what is the concatenation operator?
When was c language developed?
What is an lvalue in c?
int array[]={1,2,3,4,5,6,7,8}; #define SIZE (sizeof(array)/sizeof(int)) main() { if(-1<=SIZE) printf("1"); else printf("2"); }