what type of questions arrive in interview over c programming?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

wat is the meaning of c?

9 Answers   CTS, IBM, Wipro,


tell me the full form of c?

2 Answers  


True or false: If you continuously increment a variable, it will become negative? 1) True 2) False 3) It depends on the variable type

7 Answers  


What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the next lower integer B)it returns the value rounded up to the next higher integer C)the Next Higher Value D)the next lower value

3 Answers   Accenture, Wipro,


printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions

0 Answers  






What is the return type of sizeof?

0 Answers  


What are directives in c?

0 Answers  


exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above

0 Answers  


Explain this code. #include <stdio.h> void f1(int *k) { *k = *k + 10; } main ( ){ int i; i = 0; printf (" The value of i before call %d \n", i); f1 (&i); printf (" The value of i after call %d \n", i); }

3 Answers   IBM,


is forign key will be unique key any table or not?

2 Answers  


Explain following declaration int *P(void); and int (*p)(char *a);

3 Answers  


write a program to copy a string without using a string?

2 Answers  


Categories