What is c variable?
Do you know the difference between malloc() and calloc() function?
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
Explain how can I avoid the abort, retry, fail messages?
What is the best way to comment out a section of code that contains comments?
What is huge pointer in c?
Can you explain the four storage classes in C?
extern static int i func() { i =10; i++; printf("%d \n",i); } main() { i =20; printf("%d \n",i); func(); printf("%d \n",i); }
What is FIFO?
a 'c' program to tell that the set of three coordinates lie on a same line
HOW TO SWAP TWO NOS IN ONE STEP?
Given an array A[n+m] of n+m numbers, where A[1] ... A[n] is sorted and A[n+1] ... A[n+m] is sorted. Design a linear time algorithm to obtain A[1...n+m] sorted using only O(1) extra space. Time Complexity of your algorithm should be O(n) and Space Complexity O(1).
What is an operator?