Find errors
(1) m = ++a*5;
(2) a = b ++ -c*2;
(3)y = sqrt (1000);
Answer Posted / srikanth karnati
(2)HAS ERROR
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Hai sir, I had planned to write the NIC scientific engineer exam , plz post the sample question......
Is a house a shell structure?
Is calloc better than malloc?
List the difference between a While & Do While loops?
Do variables need to be initialized?
Sir,please help me out with the code of this question. Write an interactive C program that will encode or decode multiple lines of text. Store the encoded text within a data file, so that it can be retrieved and decoded at any time. The program should include the following features: (a) Enter text from the keyboard, encode the text and store the encoded text in a data file. (b) Retrieve the encoded text and display it in its encoded form. (c) Retrieve the encoded text, decode it and then display the decoded text. (d) End the computation. Test the program using several lines of text of your choice.
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
How can my program discover the complete pathname to the executable from which it was invoked?
Explain what does a function declared as pascal do differently?
What is an arrays?
Write a program to check prime number in c programming?
In a switch statement, what will happen if a break statement is omitted?
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
what is use of malloc and calloc?
What is function prototype?