Tell me can the size of an array be declared at runtime?
No Answer is Posted For this Question
Be the First to Post Answer
What is static memory allocation?
consider the following structure: struct num nam{ int no; char name[25]; }; struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nicholas"}}; ..... ..... printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1); What does the above statement print? a.8,9 b.9,9 c.8,8 d.8,unpredictable value
12345 1234 123 12 1
Print all numbers which has a certain digit in a certain position eg: number=45687 1 number=4 2 number=5 etc
write a c program to print a given number as odd or even without using loop statements,(no if ,while etc)
Where can I get an ansi-compatible lint?
What is meant by preprocessor in c?
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
Hai,I have done with my bachelor of commerce and planing to ms,please suggest me how to convince vo for shifting from commerce to computers. Visa on 8 DEC 2014 Npu university
what is output? main() { #define SQR(x) x++ * ++x int i = 3; printf(" %d %d ",SQR(i),i * SQR(i)); } a)9 27 b)35 60 c)20 60 d)15 175
explain what is fifo?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?