Explain modulus operator. What are the restrictions of a modulus operator?
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
Why c is called a mid level programming language?
How main function is called in c?
What is the difference between text and binary modes?
which of the following statements is incorrect a.typedef struct new{ int n1; char n2; } DATA; b.typedef struct { int n3; char *n4; }ICE; c.typedef union { int n5; float n6; } UDT; d.#typedef union { int n7; float n8; } TUDAT;
What is the purpose of 'register' keyword?
Write a C program where input is: "My name is xyz". output is: "xyz is name My".
identify the in correct expression a.a=b=3=4; b.a=b=c=d=0; float a=int b=3.5; d.int a; float b; a=b=3.5;
main() { FILE *fs; char c[10]; fs = fopen(“source.txt”, ”r”); /* source.txt exists and contains “Vector Institute” */ fseek(fs,0,SEEK_END); fseek(fs,-3L,SEEK_CUR); fgets(c,5,fs); puts(c); }
What are the uses of pre-processor directives?
What are the differences between new and malloc in C?
What do you mean by recursion in c?