What is the difference between exit() and _exit() function?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int i,n=010; int sum=0; for(i=1;i<=n;i++) {s=s+i; } printf("%d",&s); getch(); }
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
how many times does the loop iterated ? for (i=0;i=10;i+=2) printf("Hi\n");
How can a number be converted to a string?
How does placing some code lines between the comment symbol help in debugging the code?
what is the difference between north western polytechnique university and your applied colleges?? please give ur answers for this. :)
what will be the output off the following program? #include<stdio.h> int main() { int a; a=015+0*71+5; printf("%d,a"); return0; }
write a fuction for accepting and replacing lowercase letter to'Z' with out using inline function.
Is the C language is the portable language...If yes...Then Why...and if not then what is problem so it is not a Portable language..???
What is the output of the program given below #include<stdio.h> main() { char i=0; for(;i>=0;i++) ; printf("%d\n",i); }
21 Answers ADITI, Student, TCS,
Does c have enums?
Why array starts with index 0