How we can insert comments in a c program?
Answer / Reena Ray
In C, comments are inserted using two types: single-line comments (//) and multi-line comments (/* ... */). Single-line comments start with // and end at the end of the line. Multi-line comments start with /* and end with */.
| Is This Answer Correct ? | 0 Yes | 0 No |
what is d pitfalls of registers variables
main() { int i,n=010; int sum=0; for(i=1;i<=n;i++) {s=s+i; } printf("%d",&s); getch(); }
Explain spaghetti programming?
How can I implement sets or arrays of bits?
Is c language still used?
Combinations of fibanocci prime series
how to implement stack operation using singly linked list
Are there namespaces in c?
How many levels of pointers can you have?
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
What is pointer in c?
if we take a number as a char then can we manipulate(add, subtract) on this number