When can a far pointer be used?
No Answer is Posted For this Question
Be the First to Post Answer
totally how much header files r in c language
Stimulate calculator using Switch-case-default statement for two numbers
What is the purpose of type declarations?
Explain how can I pad a string to a known length?
How do I declare a pointer to an array?
What does nil mean in c?
What is the difference between declaring a variable by constant keyword and #define ing that variable?
write a c/c++ programthat connects to a MYSQL server and checks if the INNoDB plug in is installed on it.If so your program should print the total number of disk writes by MYSQL.
How can you tell whether a program was compiled using c versus c++?
Write a c program to Find the name that you entered is male name or female name? Such as Sunjay is name of male and Payal is name of female
#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }
What does the message "automatic aggregate intialization is an ansi feature" mean?