what is different between auto and local static? why should we use local static?
No Answer is Posted For this Question
Be the First to Post Answer
enum { SUNDAY, MONDAY, TUESDAY, }day; main() { day =20; printf("%d",); getch(); } what will be the output of the above program
What is n in c?
Describe how arrays can be passed to a user defined function
why we need function pointers?
difference between Low, Middle, High Level languages in c ?
What is the purpose of void in c?
What are the advantages of Macro over function?
Write a code to reverse string seperated by spaces i/p str=India is my country o/p str=aidnI si ym yrtnuoc After writing code, optimize the code
Can u return two values using return keyword? If yes, how? If no, why?
Write a C program to convert an integer into a binary string?
Explain what is the benefit of using #define to declare a constant?
Given an array A[n+m] of n+m numbers, where A[1] ... A[n] is sorted and A[n+1] ... A[n+m] is sorted. Design a linear time algorithm to obtain A[1...n+m] sorted using only O(1) extra space. Time Complexity of your algorithm should be O(n) and Space Complexity O(1).