How many types of functions are there in c?
No Answer is Posted For this Question
Be the First to Post Answer
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
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
Is there any restriction in how many arguments printf or scanf function can take? in which file in my c++ compiler i can see the code for implementation of these two functions??
int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
What language is c written?
Difference between constant pointer and pointer to a constant.
In C programming, what command or code can be used to determine if a number of odd or even?
program to find the ASCII value of a number
How can I increase the allowable number of simultaneously open files?
What ios diff. Between %e & %f?
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm
what is the difference between static variable and register variable?