find out largest elemant of diagonalmatrix
No Answer is Posted For this Question
Be the First to Post Answer
How do I determine whether a character is numeric, alphabetic, and so on?
How to write a code for random pick from 1-1000 numbers? The output should contain the 10 numbers from the range 1-1000 which should pick randomly, ie ,for each time we run the code we should get different outputs.
how to find string length wihtout using c function?
Can true be a variable name in c?
write a c programs to do multiplication of two numbers with out using arithmatic operator ??????????
Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.
Explain what is output redirection?
What is the general form of #line preprocessor?
What is difference between constant pointer and constant variable?
What is meant by inheritance?
Where static variables are stored in memory in c?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none