What's the best way to declare and define global variables?

Answer Posted / karnik ankit

the best way to declare and define global variables after
the header files or before the main function.

Is This Answer Correct ?    11 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is advantage of pointer in c?

696


What are header files and what are its uses in C programming?

638


Explain what is a 'locale'?

585


What is difference between stdio h and conio h?

888


What are the different types of constants?

640






Explain what is the benefit of using an enum rather than a #define constant?

724


How are structure passing and returning implemented?

592


You have given 2 array. You need to find whether they will create the same BST or not. For example: Array1:10 5 20 15 30 Array2:10 20 15 30 5 Result: True Array1:10 5 20 15 30 Array2:10 15 20 30 5 Result: False One Approach is Pretty Clear by creating BST O(nlogn) then checking two tree for identical O(N) overall O(nlogn) ..we need there exist O(N) Time & O(1) Space also without extra space .Algorithm ?? DevoCoder guest Posted 3 months ago # #define true 1 #define false 0 int check(int a1[],int a2[],int n1,int n2) { int i; //n1 size of array a1[] and n2 size of a2[] if(n1!=n2) return false; //n1 and n2 must be same for(i=0;ia1[i+1]) && (a2[i]>a2[i+1]) ) ) return false; } return true;//assumed that each array doesn't contain duplicate elements in themshelves }

2714


What happens if a header file is included twice?

600


What is function definition in c?

588


Explain how do I determine whether a character is numeric, alphabetic, and so on?

654


The __________ attribute is used to announce variables based on definitions of columns in a table?

673


What is floating point constants?

693


What is pointer & why it is used?

604


Which is more efficient, a switch statement or an if else chain?

584