31
votes
2answers
596 views

Semicolon on my function parameters in C

matrix_* matrix_insert_values(int n; double a[][n], int m, int n) { matrix_* x = matrix_new(m, n); for (int i = 0; i < m; i++) for (int j = 0; j < n; j++) ...
1
vote
7answers
652 views

Semicolon after double slash in C

I have a question about comments in C language. When we write for example //this is the first step This means a comment. But when we write //this is the first step; Does this also mean a ...
2
votes
3answers
703 views

Use of ({ … }) brackets in macros to swallow the semicolon

Often, in macros, you will see people use a do { ... } while(0) to swallow the semicolon. I just came across an example where they use ({ ... }) instead, and it seems to not only swallow the ...
1
vote
7answers
1k views

How actually does this if statement work

It has been a popular question that how to print hello world without using semicolon.I know many codes but this one sounds weird because I am unable to get the logic behind it.Please help me know how ...
2
votes
4answers
185 views

How to retrieve data and not entire lines in C?

Right now I use: char record[BUFLEN]; if(fgets(record, BUFLEN, fp) != NULL) { /* some code */ } to get lines from input like: city=Boston;name=Bob;age=35 city=New ...