When c language was developed?


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

Post New Answer

More C Interview Questions

What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }

0 Answers   Google,


Program to simulate second clock

2 Answers  


What are different types of pointers?

0 Answers  


I have an array of 100 elements. Each element contains some text. i want to: append a star character to the end of every fifth element remove every second character from every tenth element, and… add a line feed (ascii 10) after the 30th character of every array element whose length is greater than 30 characters.

1 Answers  


program in c to print 1 to 100 without using loop

9 Answers   Wipro,






What is an example of structure?

0 Answers  


How can I implement a delay, or time a users response, with sub-second resolution?

0 Answers  


what do you mean by inline function in C?

0 Answers   IBS, TCS,


What does the c preprocessor do?

0 Answers  


a=0; while(a<5) printf("%d\n",a++); how many times does the loop occurs? a.infinite b.5 c.4 d.6

7 Answers   TCS,


how to write optimum code to divide a 50 digit number with a 25 digit number??

0 Answers   MGM,


how to connect oracle in C/C++.

3 Answers   TCS, Wipro,


Categories