what is a non volatile key word in c language?
Answer / vishnu
There is no non volatile key word in C.
we have volatile const
we have const
we have volatile key words.
| Is This Answer Correct ? | 4 Yes | 0 No |
What is the difference between array and linked list in c?
How many types of errors are there in c language? Explain
program to print upper & lower triangle of a matrix
write c program to display output 10(10+20)+(10+20+30)+ ... n term
0 Answers Hindustan Gum Chemicals,
Can you please explain the scope of static variables?
What is the argument of a function in c?
write a program structure to find average of given number
Why c is called a middle level language?
Give me basis knowledge of c , c++...
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
How do you search data in a data file using random access method?
#define MAX(x,y) (x) > (y) ? (x) : (y) main() { int i = 10, j = 5, k = 0; k = MAX(i++, ++j); printf("%d %d %d", i,j,k); } what will the values of i , j and k? }
14 Answers CDAC, GATE, NDS, TCS,