What are pointers?
No Answer is Posted For this Question
Be the First to Post Answer
Convert the following expression to postfix and prefix X $ Y Z - M + N + P / Q / (R + S)
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
What is const volatile variable in c?
What is structure padding ?
Explain modulus operator.
What are types of functions?
main() { int i=5; printf("%d%d%d%d",i++,i--,i); }
What is a stream water?
consider the following C code main() { int i=3,x; while(i>0) { x=func(i); i--; } int func(int n) { static sum=0; sum=sum+n; return(sum); } the final value of x is
What is a built-in function in C?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
Why is c called c?