Explain zero based addressing.
No Answer is Posted For this Question
Be the First to Post Answer
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
How can I implement a delay, or time a users response, with sub-second resolution?
What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these
where does malloc() function get the memory?
Why doesn't C support function overloading?
How can you increase the size of a dynamically allocated array?
1 1 2 1 2 3 1 2 3 4 1 2 3 1 2 1 generate this output using for loop
how to return 1000 variables from functio9n in c?plz give me code also
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
multiple of 9 without useing +,* oprator
What does do in c?
How is pointer initialized in c?