What are near, far and huge pointers?
No Answer is Posted For this Question
Be the First to Post Answer
Difference between malloc() and calloc() function?
Why do we need functions in c?
What is the scope of static variables in c language?
What is union and structure in c?
Struct(s) { int a; long b; } Union (u) {int a; long b; } Print sizeof(s)and sizeof(u) if sizeof(int)=4 and sizeof(long)=4
write a progrmm in c language take user interface generate table using for loop?
Why we use conio h in c?
How to find the given no is odd or even without checking of any condition and loops. (Hint: Using array)
what are the different storage classes in c?
Convert the following expression to postfix and prefix X $ Y Z - M + N + P / Q / (R + S)
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
What is diffrance between declaration and defination of a variable or function