WHAT IS THE DEFINATION OF IN TECHNOLOGY AND OFF TECHNOLOGY ?
Answer / madhavi
e task which is completed with in short time is called in technology..
| Is This Answer Correct ? | 1 Yes | 0 No |
Can you please explain the scope of static variables?
Write a C program that defines a 2-dimentional integer array called A [50][50]. Then the elements of this array should randomly be initialized either to 1 or 0. The program should then print out all the elements in the diagonal (i.e. a[0][0], a[1][1],a[2][2], a[3][3], ……..a[49][49]). Finally, print out how many zeros and ones in the diagonal.
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
in linking some of os executables are linking name some of them
write a “Hello World” program in “c” without using a semicolon?
WRITE A C PROGRAM TO FIND SECOND BIGGEST VALUE FROM THE GIVEN VALUES
What does the message "automatic aggregate intialization is an ansi feature" mean?
What is the right way to use errno?
What are the types of pointers in c?
Why is it that not all header files are declared in every C program?
What are the application of void data type in c?
Where register variables are stored in c?