How variables are declared in c?


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

Post New Answer

More C Interview Questions

How can you increase the allowable number of simultaneously open files?

0 Answers  


main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }

4 Answers   Vector,


how can i calculate mean,median,mode by using c program

1 Answers   HCL,


What are the differences between Structures and Arrays?

0 Answers   TCS,


2.main { int x,j,k; j=k=6;x=2; x=j*k; printf("%d", x);

9 Answers   HCL, Tech Mahindra,






Explain what standard functions are available to manipulate strings?

0 Answers  


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

0 Answers  


List out few of the applications that make use of Multilinked Structures?

1 Answers   Accenture,


What is LINKED LIST? How can you access the last element in a linked list?

0 Answers   ADP,


Which control loop is recommended if you have to execute set of statements for fixed number of times?

0 Answers  


write a program for size of a data type without using sizeof() operator?

22 Answers   HCL, IBM,


What is else if ladder?

0 Answers  


Categories