What does the c in ctime mean?
No Answer is Posted For this Question
Be the First to Post Answer
What is the modulus operator?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
How can I sort a linked list?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
Difference between macros and inline functions? Can a function be forced as inline?
0 Answers HAL, Honeywell, Zomato,
What is the purpose of #pragma directives in C?
how to calculate the time complexity of a given algorithm? pls give exaples..mainly for the coplexities such as O(log n),O(n log n)...
1) int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain the explain the output
What does 2n 4c mean?
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result
What is the meaning of this decleration? unsigned char (*pArray[10][10]); please reply.
Why is %d used in c?