An entire structure variable can be assigned to another
structure variable if __________
Answer Posted / ullas
if it is of same type... i.e struct stu s1,s1; s1=s2;
| Is This Answer Correct ? | 52 Yes | 3 No |
Post New Answer View All Answers
What are the properties of union in c?
What is difference between constant pointer and constant variable?
How can I read and write comma-delimited text?
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
What is a void pointer in c?
Why is c so important?
How do you determine whether to use a stream function or a low-level function?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
Is python a c language?
what is the c source code for the below output? 10 10 10 10 10 10 10 10 10 10 9 9 7 6 6 6 6 6 6 9 7 5 9 7 3 2 2 5 9 7 3 1 5 9 7 3 5 9 7 4 4 4 4 5 9 7 8 8 8 8 8 8 8 8 9
Explain the difference between strcpy() and memcpy() function?
Define macros.
using for loop sum 2 number of any 4 digit number in c language
Do you have any idea how to compare array with pointer in c?
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only