How the C program can be compiled?
Answers were Sorted based on User's Feedback
How can I access a memory located at certain address?
SIR PLS TELL ME THE CODE IN C LANGUAGE TO PRINT THE FOLLOWING SERIES 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1 1 2 3 2 1 1 2 1 1
Whats s or c mean?
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
# define prod(a,b)=a*b main() { int x=2; int y=3; printf("%d",prod(x+2,y-10)); } the output of the program is a.8 b.6 c.7 d.none
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
When is the “void” keyword used in a function?
what is the output of below code int x=8,y; x>>=2; y=x; what is y value. NOTE:EXPLANATION IS COMPALSARY with binary bits
Can math operations be performed on a void pointer?
plz answer.... write a program that reads line (using getline) e.g."345", converts each line to an integer using "atoi" and computes the average of all the numbers read. also compute the standard deviation.
what is the output of below pgm? void main() { int i=0; if(i) printf("pass"); else printf("fail"); }
What is preprocessor with example?