How we can insert comments in a c program?
No Answer is Posted For this Question
Be the First to Post Answer
Did c have any year 2000 problems?
Which of the following about the C comments is incorrect ? a.commentscan go over multiple lines b.comments can start any where in the line c.a line can contain comments with out any language statements d.comments can occur within comments
#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
3. Program to print all possible substrings. ex: String S St Str Stri Strin String t tr tri trin tring r
Explain what is page thrashing?
What are terms in math?
wap in c to accept n number display the highest and lowest value
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?
what is ans for this scanf(%%d",c);
What is nested structure with example?
How can a program be made to print the name of a source file where an error occurs?