Explain how are 16- and 32-bit numbers stored?
No Answer is Posted For this Question
Be the First to Post Answer
1. Write the function int countchtr(char string[ ], int ch); which returns the number of times the character ch appears in the string. Example, the call countchtr(“She lives in NEWYORK”, ‘e’) would return 3.
What is the correct declaration of main?
What is function and its example?
Can the size of an array be declared at runtime?
#include<stdio.h> int f(int,int); int main() { printf("%d",f(20,1)); return 0; } int f(int n,int k) { if(n==0) return 0; else if(n%2)return f(n/2,2*k)+k; else return f(n/2,2*k)-k; } how this program is working and generating output as 9....?
How are variables declared in c?
What is the Difference between Class and Struct?
please give me answer with details #include<stdio.h> main() { int i=1; i=(++i)*(++i)*(++i); printf("%d",i); getch(); }
What is the use of bitwise operator?
What is wild pointer in c?
What are the 4 data types?
What is the difference between arrays and pointers?