in any language the sound structure of that language depends on its

a) character set, input/output function, its control structures

b) character set, library functions, input/output functions its control structures

c) character set, library functions, control sturctures

d) character set, operators, its control structures


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

Post New Answer

More C Interview Questions

Which of the Following will define a type NODE that is a node in a Linked list? A)struct node {NODE*next;int x;};type def struct node NODE; B)typedef struct NODE {struct NODE *next;int x;}; C)typedef struct NODE {NODE *next;int x;}; D)typedef struct {NODE *next;int x;}NODE;

5 Answers   Accenture, TCS,


How can you find out how much memory is available?

0 Answers  


write a program to generate 1st n fibonacci prime number

12 Answers  


what is the output of the program?? #include<stdio.h> main ( ) { int a=010,sum=0,tracker: for(tracker=0;tracker<=a;tracker++) sum+=tracker; printf(ā€œ %d\nā€,sum); } what is the difference between a=10 and a=010??

3 Answers   Oracle,


Why is malloc used?

1 Answers  






Main must be written as a.the first function in the program b.Second function in the program c.Last function in the program d.any where in the program

19 Answers   CTS, HCL, TCS,


read the folllowing code # define MAX 100 # define MIN 100 .... .... if(x>MAX) x=1; else if(x<MIN) x=-1; x=50; if the initial value of x=200,what is the vlaue after executing this code? a.200 b.1 c.-1 d.50

4 Answers   TCS,


What is auto keyword in c?

0 Answers  


Why main is not a keyword in c?

0 Answers  


what is the mean of c languages.

1 Answers   Polaris,


What is meaning of "Void main" in C Language.

24 Answers   Ford, GU, HCL, IBIBS, JUW, TCS,


can we store values and addresses in the same array? explain

3 Answers   TCS,


Categories