Write a program with dynamically allocation of variable.
No Answer is Posted For this Question
Be the First to Post Answer
How can I increase the allowable number of simultaneously open files?
Differentiate Source Codes from Object Codes
a memory of 20 bytes is allocated to a string declared as char *s then the following two statements are executed: s="Etrance" l=strlen(s); what is the value of l ? a.20 b.8 c.9 d.21
which is conditional construct a) if statement b) switch statement c) while/for d) goto
why TCS selected more student in the software field from all institution.
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
What is a function simple definition?
What is logical error?
Go through the following code sinippet char a[20]; a="Hello Orcale Test"; will this compile?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
Write a program to display the no of bit difference between any 2 given numbers eg: Num1 will 12->1100 Num2 will 7->0111 the difference in bits are 2.
where can function pointers be used?