In how much time you will write this c program?
Prime nos from 1 to 1000
Answers were Sorted based on User's Feedback
Is exit(status) truly equivalent to returning the same status from main?
void main() {int i=2; printf("%d%d%d",i,++i,i++); getch(); }
List some of the dynamic data structures in C?
What are runtime error?
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
What is #line in c?
In which mode we open the file for read,write and append also in c ? a)W b)w+ c)r+ d)a
write a prgram of swapping with 2 valiables
Can we change the value of constant variable in c?
Given a single Linked list with lakhs of nodes and length unknown how do you optimally delete the nth element from the list?
What is c mainly used for?
How do you construct an increment statement or decrement statement in C?