In C, What is the #line used for?
Answers were Sorted based on User's Feedback
The #line directive tells the preprocessor to set the compiler's reported values for the line number and filename to a given line number and filename.
| Is This Answer Correct ? | 2 Yes | 0 No |
The #line directive tells the preprocessor to set the compiler's reported values for the line number and filename to a given line number and filename.
| Is This Answer Correct ? | 0 Yes | 0 No |
String concatenation
What are the main characteristics of c language describe the structure of ac program?
what are the facialities provided by you after the selection of the student.
Explain how do you sort filenames in a directory?
What is the difference between declaring a variable by constant keyword and #define ing that variable?
What is malloc and calloc?
What is the scope of static variables?
how to estimate the disk access time? e.g. the time between read one byte and another byte in the disk.
What are high level languages like C and FORTRAN also known as?
#include<stdio.h> int main() { int i=0,j=1,k=2,m,n=0; m=i++&&j++&&k++||n++; printf("%d,%d,%d,%d,%d",i,j,k,m,n); }
12 Answers Capital IQ, Sasken,
how can i print "hello".please consider inverted commas as well.i want to print on console: "hello"
Is c still relevant?