Answer Posted / karthikkumareg
in structure struct key word is used but in union union key
word is used.
| Is This Answer Correct ? | 6 Yes | 9 No |
Post New Answer View All Answers
Can you explain the four storage classes in C?
What is the explanation for prototype function in c?
What are c identifiers?
Is fortran faster than c?
Explain what is the difference between functions getch() and getche()?
what will be the output for the following main() { printf("hi" "hello"); }
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
What is sizeof int?
In which layer of the network datastructure format change is done
What are dangling pointers in c?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
find the sum of two matrices and WAP for it.
What are variables c?
In which header file is the null macro defined?
Is javascript based on c?