about c language
No Answer is Posted For this Question
Be the First to Post Answer
fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }
Can a variable be both const and volatile?
What is difference between scanf and gets?
void main() { //char ch; unsigned char ch; clrscr(); for(ch =0;ch<= 127; ch++) printf(" %c= %d \t ", ch, ch); } output?
i have to apply for the rbi for the post of officers. i need to know abt the entrance questions whether it may be aps or techinical....
An entire structure variable can be assigned to another structure variable if __________
3 Answers Sasken, TCS, Tech Mahindra, Wipro,
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
I have a varargs function which accepts a float parameter?
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
Why is main function so important?
how can make variable not in registers
What is the best way to store flag values in a program?