What is the explanation for prototype function in c?
No Answer is Posted For this Question
Be the First to Post Answer
to find the program of matrix multiplication using arrays
Explain the difference between malloc() and calloc() in c?
main() { printf(5+"good morning"); printf("%c","abcdefgh"[4]); }the o/p is morning and e...how someone explain
what does " calloc" do?
Can you please explain the difference between syntax vs logical error?
/*program to calculate hra,da in salary if salary less than 10000 then hra15%,da13% otherwise hra20%,da18%/*
main() { int a=0; if(a=0) printf("Ramco Systems\n"); printf("India\n"); } output?
What is boolean in c?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
What is #include in c?
What is the difference between macros and inline functions?
What is the difference between volatile and const volatile?