When can a far pointer be used?
No Answer is Posted For this Question
Be the First to Post Answer
write a program to generate 1st n fibonacci prime number
What are categories used for in c?
for example user gives input as " 20 or 20.0 or rs 20.0 or 20.00 or rs20 and so .. on " and the output should be stored as " rs.20.00 " in a variable
21. #define square(x) x*x main() { int i; i = 64/square(4); printf("%d",i); }
void main() { char far *farther,*farthest; printf("%d..%d",sizeof(farther),sizeof(farthest)); }
How to write a program to receive an integer & find its octal equivalent by using for loop?
What is an array? What the different types of arrays in c?
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
What is the value of y in the following code? x=7;y=0; if(x=6) y=7; else y=1;
How can I get back to the interactive keyboard if stdin is redirected?
Why pointers are used in c?
Why is main function so important?