How to write a code for reverse of string without using
string functions?
No Answer is Posted For this Question
Be the First to Post Answer
What is this infamous null pointer, anyway?
Is it better to use malloc() or calloc()?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
writ a program to compare using strcmp VIVA and viva with its output.
coding for Fibonacci.?
differentiate built-in functions and user – defined functions.
diff .between strcture and union
Find Error if any in below code, Justify ur answer: struct xx { int a; struct yy { char c; struct xx* p; } struct yy* q; }
What is extern variable in c with example?
Tell me when is a void pointer used?
what is output? main() { #define SQR(x) x++ * ++x int i = 3; printf(" %d %d ",SQR(i),i * SQR(i)); } a)9 27 b)35 60 c)20 60 d)15 175
What is wrong with this program statement? void = 10;