What is the default value of local and global variables in c?
No Answer is Posted For this Question
Be the First to Post Answer
How can I find out how much memory is available?
AMMONG THE 4 STROAGE CLASSES IN C, WHICH ONE FASTEST?
Explain how can type-insensitive macros be created?
How do I initialize a pointer to a function?
Explain what is a program flowchart and explain how does it help in writing a program?
what do the 'c' and 'v' in argc and argv stand for?
regarding the scope of the varibles;identify the incorrect statement: a.automatic variables are automatically initialised to 0 b.static variables are are automatically initialised to 0 c.the address of a register variable is not accessiable d.static variables cannot be initialised with any expression
What is #include stdlib h?
dennis ritchie invented C language in AT&T bell laboratory what is the extension of AT&T?
List out few of the applications that make use of Multilinked Structures?
What is the difference between int and float?
What kind of sorting is this? SORT (k,n) 1.[Loop on I Index] repeat thru step2 for i=1,2,........n-1 2.[For each pass,get small value] min=i; repeat for j=i+1 to N do { if K[j]<k[min] min=j; } temp=K[i];K[i]=K[min];K[min]=temp; 3.[Sorted Values will be returned] A)Bubble Sort B)Quick Sort C)Selection Sort D)Merge Sort