What is pointer to pointer in c with example?
No Answer is Posted For this Question
Be the First to Post Answer
Read two numbers from keyboard and find maximum of them?
What is the difference between struct and union in C?
#define MAX 3 main() { printf("MAX = %d \n",MAX ); #undef MAX #ifdef MAX printf("Vector Instituteā); #endif
an algorithem for the implementation of circular doubly linked list
how will you write a program on linked lists using JAVA programming???????????
What are bitwise shift operators in c programming?
how can make variable not in registers
how to swap 4 number without using temporary number?
int main() { int days; printf("enter days you are late"); scanf("%d",days); if (days<=5) printf("5o paisa fine"); if (days<=10&&days>=6) printf("1rs fine"); if(days>10) printf("10 rs fine"); if(days=30) printf("membership cancelled"); return 0; } tell me whats wrong in this program? is it right?
What is a #include preprocessor?
What is meant by 'bit masking'?
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)