How can you tell whether two strings are the same?
No Answer is Posted For this Question
Be the First to Post Answer
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;
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
Can the sizeof operator be used to tell the size of an array passed to a function?
AMMONG THE 4 STROAGE CLASSES IN C, WHICH ONE FASTEST?
Is reference used in C?
int x=sizeof(!5.856); What will value of variable x?
10. Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
0 Answers Amdocs, Apps Associates,
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
What is pointer and structure in c?
When is a “switch” statement preferable over an “if” statement?