What is a method in c?
No Answer is Posted For this Question
Be the First to Post Answer
what is output of the following statetment?Printf(“%x”, -1<<4); ?
struct node { int *a; char *b; char array[12]; }; struct node m,*n; assign the value in *a,*b,char array[12]
Convert the following expression to postfix and prefix (A+B) * (D-C)
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
What is meant by high-order and low-order bytes?
What is a constant and types of constants in c?
How can I access memory located at a certain address?
What is a node in c?
There is a number and when the last digit is moved to its first position the resultant number will be 50% higher than the original number.Find the number?
What is || operator and how does it function in a program?
What is C language Terminator?
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?