what is the role you expect in software industry?
No Answer is Posted For this Question
Be the First to Post Answer
Explain Function Pointer?
When is a “switch” statement preferable over an “if” statement?
how to add two numbers without using arithmetic operators?
Write an algorithm for a program that receives an integer as input and outputs the product of of its digits. E.g. 1234 = 24, 705 = 0
Where are the auto variables stored?
What's the difference between calloc() and malloc()?
What is the purpose of ftell?
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
5) Write a program that takes a 3 digit number n and finds out whether the number 2^n + 1 is prime, or if it is not prime find out its factors.without using big int and exponential function
void main() { int a[]={1,2,3,4,5},i; for(i=0;i<5;i++) printf("%d",a++); getch(); }
#define MAX 3 main() { printf("MAX = %d \n",MAX ); #undef MAX #ifdef MAX printf("Vector Instituteā); #endif
What is malloc and calloc?