What is methods in c?
No Answer is Posted For this Question
Be the First to Post Answer
What does #pragma once mean?
How can we allocate array or structure bigger than 64kb?
to find the program of matrix multiplication using arrays
is it possible to create your own header files?
What is the use of typedef in structure in c?
What is #line?
Explain how can I prevent another program from modifying part of a file that I am modifying?
Why we not create function inside function.
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
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?
Is c language still used?
#define MAX 3 main() { printf("MAX = %d \n",MAX ); #undef MAX #ifdef MAX printf("Vector Instituteā); #endif