Answer Posted / susmita
c is a set of instructions or commands, which are given for
the computer to do different activity or jobs or works
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
Explain what is #line used for?
How to draw the flowchart for structure programs?
write a c program for swapping two strings using pointer
ATM machine and railway reservation class/object diagram
What type of function is main ()?
Given a valid 24 hour format time find the combination of the value and write a program ,do not hard the value and if any other inputs provided should work with the logic implemented Input: 11:30 Output: 13:10 Input: 18:25 Output: 21:58
Do you have any idea how to compare array with pointer in c?
When should I declare a function?
What does sizeof function do?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
How do you list files in a directory?
What are the advantages of using new operator as compared to the function malloc ()?
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
In which language linux is written?