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
What do the functions atoi(), itoa() and gcvt() do?
How to write a program for swapping two strings without using 3rd variable and without using string functions.
What is calloc() function?
what is the use of a array in c
Can we change the value of #define in c?
In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
What is the code for 3 questions and answer check in VisualBasic.Net?
Write a program to identify if a given binary tree is balanced or not.
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
c program to manipulate x=1!+2!+3!+...+n! using recursion
Result of the following program is main() { int i=0; for(i=0;i<20;i++) { switch(i) case 0:i+=5; case 1:i+=2; case 5:i+=5; default i+=4; break;} printf("%d,",i); } } a)0,5,9,13,17 b)5,9,13,17 c)12,17,22 d)16,21 e)syntax error