Why c is called free form language?


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

Post New Answer

More C Interview Questions

What is wrong with this code such that it doesnt produce the input reversed? #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { char Space = ' '; char LineOfText; float count; LineOfText = getchar(); while ((LineOfText = getchar()) != '/n'); { count = strlen(LineOfText) - 1; while (count >= 0) { putchar(LineOfText[count]); count--; } } getchar(); return 0; }

2 Answers  


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  


Distinguish between actual and formal arguments.

0 Answers  


What is #define in c?

0 Answers  


hi send me sample aptitude papers of cts?

0 Answers  






What is null character in c?

0 Answers  


What is use of pointer?

0 Answers  


What is the difference between near, far and huge pointers?

0 Answers  


What is structure packing ?

2 Answers   HP,


what will be the output of this program? void main() { int a[]={5,10,15}; int i=0,num; num=a[++i] + ++i +(++i); printf("%d",num); }

6 Answers   Microsoft,


What is the code in while loop that returns the output of given code?

0 Answers  


what is real time system?what is the differance between hard and soft real time systems

2 Answers  


Categories