What are runtime error?
No Answer is Posted For this Question
Be the First to Post Answer
a linearly ordered set of data elements that have the same structure and whose order is preserved in storage by using sequential allocation a) circular b) ordinary c) array d) linear list
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?
What is %g in c?
void swap(int a,int b) { a=a+b; b=a-b; a=a-b; } in this code always gives the same result for all case
How many ways are there to swap two numbers without using temporary variable? Give the each logic.
What is the purpose of 'register' keyword in c language?
#include<stdio.h> main() {int i=1;j=1; for(;;) {if(i>5) break; else j+=1; printf("\n%d",j) i+=j; } }
What is the difference between static and global variables?
Can we increase size of array in c?
Why is c fast?
Write a program to add the following ¼+2/4+3/4+5/3+6/3+... (Like up to any 12 no.s)
Is it possible to run using programming C for Java Application?