Answer Posted / aravind
error
relational operators can't be assaigned, they are used for just conditions.
| Is This Answer Correct ? | 4 Yes | 12 No |
Post New Answer View All Answers
Can we declare a function inside a function in c?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
Explain why C language is procedural?
What is the purpose of type declarations?
What is strcmp in c?
Explain union. What are its advantages?
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers
What is int main () in c?
What is the method to save data in stack data structure type?
Explain which function in c can be used to append a string to another string?
What is pass by reference in functions?
What are the functions to open and close file in c language?
Why do we need functions in c?
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.