How many data structures are there in c?
No Answer is Posted For this Question
Be the First to Post Answer
FILE PROGRAMMING
char *p="name"; printf(p);
What is sizeof c?
2. Write a function called hms_to_secs() that takes three int values—for hours, minutes, and seconds—as arguments, and returns the equivalent time in seconds.. Create a program that exercises this function by repeatedly obtaining a time value in hours, minutes, and seconds from the user (format 12:59:59), calling the function, and displaying the value of seconds it returns.
code for concatination of 2 strings with out using library functions?
What is sizeof int?
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration
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
what is different between auto and local static? why should we use local static?
Explain what happens if you free a pointer twice?
What is the purpose of the statement: strcat (S2, S1)?
Explain that why C is procedural?