When was c language developed?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what are run-time errors?
What is RAM memory? and What is ROM?Who designed one is temparary and another is permanent?why they designed like that?By using far pointer which type data(whether hexadecimal)we can access?
What are extern variables in c?
What is %s and %d in c?
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
Difference between exit() and _exit() function?
What is #define size in c?
array contains zeros and ones as elements.we need to bring zeros one side and one other side in single parse. ex:a[]={0,0,1,0,1,1,0,0} o/p={0,0,0,0,0,1,1,1}
what type of language is C?
main() { int i = 1; int num[] = {1,2,3,4}; num[i] = i++; printf("%d", num[i]); } what will be the output? }
22 Answers NDS, TCS,
What is an endless loop?
Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates