How old is c programming language?


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

Post New Answer

More C Interview Questions

FIND THE OUTPUT IF THE INPUT IS 5 5.75 void main() { int i=1; float f=2.25; scanf("%d%f",&i,&f); printf("%d %f",,i,f); } ANSWER IS 5 AND 2.25 WHY?

4 Answers   Wipro,


convert 0.9375 to binary

2 Answers   CTS, TANCET,


Write program to remove duplicate in an array?

0 Answers  


a program that can input number of records and can view it again the record

0 Answers   Accenture,


Explain demand paging.

1 Answers   Agilent,






int a=0,b=2; if (a=0) b=0; else b=*10; What is the value of b ?

6 Answers   TCS,


#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300

4 Answers   Tieto,


what is a stack

3 Answers  


Explain the use of 'auto' keyword

0 Answers  


write a program to swap Two numbers without using temp variable.

75 Answers   EMC, Focus, GreyB, HCL, Hitech, HP, Huawei, Infosys, Mannar Company, Microsoft, Miles Software, Odessa Technologies, Satyam, TCS, Wipro,


What the advantages of using Unions?

0 Answers   TISL,


write a program to copy a string without using a string?

2 Answers  


Categories