C language questions for civil engineering
No Answer is Posted For this Question
Be the First to Post Answer
What are the standard predefined macros?
Is there a way to switch on strings?
What is structure padding ?
How can I change the size of the dynamically allocated array?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
what is the difference b/w compiler and debugger?
How can I read/write structures from/to data files?
What is a pointer variable in c language?
What is difference between main and void main?
Write a program to find the smallest and largest element in a given array in c language
What is 1f in c?
enum day = { jan = 1 ,feb=4, april, may} what is the value of may? a)4 b)5 c)6 d)11 e)none of the above