pierrot's divisor program using c or c++ code
No Answer is Posted For this Question
Be the First to Post Answer
write a c program to store and print name,address,roll.no of a student using structures?
where are auto variables stored? What are the characteristics of an auto variable?
Explain what are run-time errors?
what is c?
What is difference between union and structure in c?
What is a const pointer, and how does it differ from a pointer to a const?
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā%d\nā,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
which operator having lowest precedence?? a.)+ b.)++ c.)= d.)%
I have one doubt. What does below statement mean? #define sizeof(operator) where operator can be int or float etc. Does this statement meaningful and where it can be used?
int i=~0; uint j=(uint)i; j++; printf(“%d”,j);
Why main is used in c?
What are pointers? What are different types of pointers?