What is huge pointer in c?
No Answer is Posted For this Question
Be the First to Post Answer
what is the difference between const volatile int i & volatile const int j;
explain about storage of union elements.
How can I increase the allowable number of simultaneously open files?
Can we access array using pointer in c language?
What does emoji p mean?
write a program that will accept two integers and will implement division without using the division operator if the second value is an odd number and will implement multiplication without using multiplication operator if the second value is an even number.
Can variables be declared anywhere in c?
What is the result main() { char c=-64; int i=-32 unsigned int u =-16; if(c>i){ printf("pass1,"); if(c<u) printf("pass2"); else printf("Fail2");} else printf("Fail1); if(i<u) printf("pass2"); else printf("Fail2") } a)Pass1,Pass2 b)Pass1,Fail2 c)Fail1,Pass2 d)Fail1,Fail2 e)none
What are the differences between new and malloc in C?
How can we see the Expanded source code and compiled code for our source program in C?
study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above
Code for calculating square root without using library function, of math.h