Explain how do you generate random numbers in c?
No Answer is Posted For this Question
Be the First to Post Answer
What are terms in math?
What do you mean by a sequential access file?
int i=0,j; j=++i + ++i ++i; printf(" %d",j);
How do I get a null pointer in my programs?
while initialization of two dimensional arrays we can initialize like a[][2] but why not a[2][] is there any reason behind this?
Where define directive used?
What are the different file extensions involved when programming in C?
extern static int i func() { i =10; i++; printf("%d \n",i); } main() { i =20; printf("%d \n",i); func(); printf("%d \n",i); }
Why main function is special give two reasons?
what is c programming?
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
What is a lvalue