Why is c called c?


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

Post New Answer

More C Interview Questions

What's the difference between DELETE TABLE and TRUNCATE TABLE commands?

2 Answers   CTC,


print out put like this form 1 2 3 4 5 6 3 5 7 9 11 8 12 16 20

8 Answers   TCS,


10. Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning

5 Answers   Accenture,


#include <stdio.h> int main() { if ("X" <"x") printf("X smaller than x "); } my question is whats the mistake in this program? find it and please tell me..

3 Answers  


Without using main fn and semicolon,print remainder for a given number in C language

2 Answers  






what is dangling pointer?

1 Answers   LG Soft,


Why is c used in embedded systems?

0 Answers  


What is omp_num_threads?

0 Answers  


Can we declare a function inside a function in c?

0 Answers  


Write a program to print distinct words in an input along with their count in input in decreasing order of their count..

1 Answers  


printf("%d",(printf("Hello")); What it returns?

32 Answers   TCS,


What kind of sorting is this? SORT (k,n) 1.[Loop on I Index] repeat thru step2 for i=1,2,........n-1 2.[For each pass,get small value] min=i; repeat for j=i+1 to N do { if K[j]<k[min] min=j; } temp=K[i];K[i]=K[min];K[min]=temp; 3.[Sorted Values will be returned] A)Bubble Sort B)Quick Sort C)Selection Sort D)Merge Sort

3 Answers   Accenture,


Categories