What is wrong with this code?
Answer / Aakriti Sharma
Without the specific code, it's difficult to determine what's wrong. However, common mistakes include forgetting semicolons at the end of statements, declaring variables twice, using undefined variables or functions, and having logic errors in the code.
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain how can a program be made to print the name of a source file where an error occurs?
print the pattern 1 2 4 3 6 9 4 8 12 16 5 10 15 20 25 if n=5
i want to make a program in which we use input having four digits(4321) and get output its reciprocal(1234).
write a c code "if you give a any decimal number then print that number in english alphabet"? ex: i/p: 552 o/p: five hundred fifty two ...
How do I use strcmp?
Why is c used in embedded systems?
Explain what is the heap?
Can we add pointers together?
convert 0.9375 to binary
What is string length in c?
write a c programs to do multiplication of two numbers with out using arithmatic operator ??????????
Which of the following are valid "include" formats? A)#include and #include[file.h] B)#include (file.h) and #include C)#include [file.h] and #include "file.h" D)#include <file.h> and #include "file.h"