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
Why can't we initialise member variable of a strucutre
to get a line of text and count the number of vowels in it
When should the volatile modifier be used?
How can a string be converted to a number?
What does the characters “r” and “w” mean when writing programs that will make use of files?
Explain how can a program be made to print the name of a source file where an error occurs?
write an algorithm and c program to add two 2x2 matrics
provide an example of the Group by clause, when would you use this clause
If I want to initialize the array like. int a[5] = {0}; then it gives me all element 0. but if i give int a[5] = {5}; then 5 0 0 0 0 is ans. what will I do for all element 5 5 5 5 5 in a single statement???
What is the role of && operator in a program code?
main() { int i=0; while(+(+i--)!=0) i-=i++; printf("%d",i); }
What is assert and when would I use it?