What are the features of c languages?


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

Post New Answer

More C Interview Questions

void main() { int i=5; printf("%d",i++ + ++i); }

21 Answers   ME,


Can math operations be performed on a void pointer?

0 Answers  


What is a pointer?

1 Answers   ADP, IFFCO,


main() { int x=10,y=15; x=x++; y=++y; printf("%d %d\n",x,y); } output??

19 Answers   EBS, Ramco, Sangwin, TCS,


can we print any string in c language without using semicolon(;)(terminator) in whole program.

11 Answers  






what type of language is C?

13 Answers   Microsoft,


What is the use of putchar function?

0 Answers  


WRITE A C PROGRAM FOR PRINT "RHOMBUS" STRUCTURE . Example: Enter the numbers :3 * * * * * * * *

3 Answers   Infosys, TCS,


what is the full form of c language

9 Answers   Satyam, TCS, VNC,


What are the different types of errors?

0 Answers  


What is a substring in c?

0 Answers  


number 2 plssssss help !!....using array.. turbo c.. create a program that will accept a number and determine if it is a happy number or an unhappy number.. example: enter a number : 7 7*7=49 then 4 and 9 4*4 and 9*9== 16 + 18 gives you 97 then 9 and 7 9*9 and 7*7 == 81 + 49 gives you 130 then 1 and 3 1*1 and 3*3 == 1 + 9 gives you 10 1*1 gives you 1 sample output: 7= 49= 16+81= 97= 81+49=130 =1+9=10 =1 "7 is a happy number" . if the last number is 2 then the number being inputed is not a happy number.

3 Answers  


Categories