What is the significance of scope resolution operator?
No Answer is Posted For this Question
Be the First to Post Answer
what will be the output of this program........ main() { int a=2,b=4,c=6; printf("%d"); } why it gives the value of third variable.
What is class and object in c?
What is data types?
write the program to find multiplication of 2-D matrix??????????
Can we change the value of constant variable in c?
f(*p) { p=(char *)malloc(6); p="hello"; return; } main() { char *p="bye"; f(p); printf("%s",p); } what is the o/p?
How can I change the size of the dynamically allocated array?
what is the output of below code int x=8,y; x>>=2; y=x; what is y value. NOTE:EXPLANATION IS COMPALSARY with binary bits
What does sizeof return c?
what is ram?
find largest of 3 no
Explain how many levels deep can include files be nested?