c language interview questions & answer
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between getch() and getche()?
What are the valid places to have keyword “break”?
Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)
Suggesting that there can be 62 seconds in a minute?
What is an anonymous union and where to apply that ?
What is the difference between array and structure in c?
What are the disadvantages of external storage class?
can you explain in brief what is "r+" mode in a file... i know that it si used to read and modify rhe existing content.... but explalanation about the file pointer in "r+" mode i wann to know???????????
What are the advantages of external class?
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
Write a c code segment using a for loop that calculates and prints the sum of the even integers from 2 to 30, inclusive?
Write a program to display the no of bit difference between any 2 given numbers eg: Num1 will 12->1100 Num2 will 7->0111 the difference in bits are 2.