Differentiate call by value and call by reference?
No Answer is Posted For this Question
Be the First to Post Answer
Result of the following program is main() { int i=0; for(i=0;i<20;i++) { switch(i) case 0:i+=5; case 1:i+=2; case 5:i+=5; default i+=4; break;} printf("%d,",i); } } a)0,5,9,13,17 b)5,9,13,17 c)12,17,22 d)16,21 e)syntax error
What are 'near' and 'far' pointers?
What are bit fields? What is their use?
What does %p mean?
Why is sizeof () an operator and not a function?
Write a program to print all the prime numbers with in the given range
8 Answers ABC, College School Exams Tests, TCS,
Is javascript written in c?
What is a pointer variable in c language?
What does the error 'Null Pointer Assignment' mean and what causes this error?
What are the preprocessor categories?
7. Identify the correct argument for the function call fflush() in ANSI C: A)stdout B)stdin C)stderr D)All the above
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)