Tagged Questions
-1
votes
1answer
56 views
How to locate functions in a C Program [closed]
In a software engg project (which I am doing in Java) I am given a few C codes. Now I need to locate the names, line numbers, return types etc. for each function for each code.
I mean, a typical ...
1
vote
0answers
70 views
Undeclared identifier when passing struct using pointers
I have the following method to read a file into a struct, but, the program is bombing when it gets to the write file method as the curr variable is empty.
I have added a null check when the variables ...
0
votes
3answers
289 views
How to use “enter” to separate input tokens in C?
Example user input:
abcd enter efgh enter
I want to extract the strings separated by presses of the enter key.