Discuss the function of conditional operator, size of operator and comma operator with examples.
No Answer is Posted For this Question
Be the First to Post Answer
a sequence of bytes with one to one corrspondence to those in the external device a) sequential addressing b) address c) byte code d) none
What are c identifiers?
How to print all the 26 alphabets in this order in C. AbCdEfGh..... it should print dynamically from a to z and do not print this using pgm like this print("Ab......"); Use loops or anything to print all alphabets
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }
How we can write a value to an address using macro..?
what is call by value and call by reference
what are two categories of clint-server application development ?
What is Dynamic Initialization.
main() { enum{red,green,blue=6,white}; pf("%d%d%d%d", red,green,blue,white); return 0; } a)0 1 6 2 b)0 1 6 7 c)Compilation error d)None of the above
write C code to reverse a string such that if i/p is "abc defg hij klmno pqrs tuv wxyz" and the o/p should be "cba gfed jih onmlk srqp vut zyxw"
Difference between linking and loading?