What is data types?
No Answer is Posted For this Question
Be the First to Post Answer
Is c is a high level language?
Does * p ++ increment p or what it points to?
C passes By value or By reference?
5 Answers Geometric Software, Infosys,
What is a program flowchart and explain how does it help in writing a program?
what is dangling pointer?
What is meant by int main ()?
while running a program, i got the msg that press return key to exit.what that mean in C as there are no such options as far i know.
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
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
Give the Output : * * * * * * * * * *
What compilation do?
7 Answers Geometric Software, Infosys,
Predict the output or error(s) for the following: 25. main() { printf("%p",main); }