What is the return type of sizeof?


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

Post New Answer

More C Interview Questions

#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }

0 Answers   Wilco,


what is the purpose of the code, and is there any problem with it. unsigned int v[10]; unsigned int i = 0; while (i < 10) v[i] = i++;

2 Answers   Google,


What are actual arguments?

0 Answers  


Explain what is a 'locale'?

0 Answers  


void main() { char far *farther,*farthest; printf("%d..%d",sizeof(farther),sizeof(farthest)); }

3 Answers   ME, pspl,






Why ca not I do something like this?

0 Answers  


Write a C/C++ program that connects to a MySQL server and checks intrusion attempts every 5 minutes. If an intrusion attempt is detected beep the internal speaker to alert the administrator. A high number of aborted connects to MySQL at a point in time may be used as a basis of an intrusion.

1 Answers  


Explain output of printf("Hello World"-'A'+'B'); ?

0 Answers  


Do pointers store the address of value or the actual value of a variable?

0 Answers   Fidelity,


Explain the bubble sort algorithm.

0 Answers  


List some applications of c programming language?

0 Answers  


What is meant by initialization and how we initialize a variable?

0 Answers  


Categories