What is an array in c?
No Answer is Posted For this Question
Be the First to Post Answer
How do I declare a pointer to an array?
What is the memory allocated by the following definition ? int (*x)();
Write a program to print factorial of given number using recursion?
What is use of integral promotions in c?
int main() { int x = (2,3,4); int y = 9,10,11; printf("%d %d",x,y); } what would be the output?
write a program which will count occurance of a day between two dates.
What is string constants?
Write a program to produce the following output in c language? 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
Explain the term printf() and scanf() used in c language?
Differentiate between static and dynamic modeling.
what are the compilation steps? ( i want inside the compiler )
Explain what is the difference between #include and #include 'file' ?