What is the difference between int main and void main in c?
No Answer is Posted For this Question
Be the First to Post Answer
Give a method to count the number of ones in a 32 bit number?
1.what are local and global variables? 2.what is the scope of static variables? 3.what is the difference between static and global variables? 4.what are volatile variables? 5.what is the use of 'auto' keyword? 6.how do we make a global variable accessible across files? Explain the extern keyword? 7.what is a function prototype? 8.what does keyword 'extern' mean in a function declaration?
Are there any problems with performing mathematical operations on different variable types?
What is the difference between %d and %*d in C
Is printf a keyword?
What is function definition in c?
what is function pointer?
what are the various memory handling mechanisms in C ?
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
write a c program in such a way that if we enter the today date the output should be next day's date.
#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }
What is pointer & why it is used?