What is c variable?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Do you know the difference between malloc() and calloc() function?

0 Answers  


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

0 Answers  


Explain how can I avoid the abort, retry, fail messages?

0 Answers  


What is the best way to comment out a section of code that contains comments?

0 Answers  


What is huge pointer in c?

0 Answers  


Can you explain the four storage classes in C?

0 Answers   TCS,


extern static int i func() { i =10; i++; printf("%d \n",i); } main() { i =20; printf("%d \n",i); func(); printf("%d \n",i); }

2 Answers  


What is FIFO?

3 Answers  


a 'c' program to tell that the set of three coordinates lie on a same line

3 Answers   Persistent,


HOW TO SWAP TWO NOS IN ONE STEP?

16 Answers   Satyam,


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).

0 Answers  


What is an operator?

0 Answers  


Categories