how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?
2 5065what is the difference between : func (int list[], ...) or func (int *list , ....) - what is the difference if list is an array and if also if list is a pointer
2 4591How to run c Program without using IDE of c. means if program made in notepad.then how to compile by command prompt.
1 6109what is the Output? int a=4 b=3; printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++); printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);
IBM,
10 16892int main(){ float f=8.0; if(f==8.0) printf("good"); else printf("bad"); } what is the answere and explain it?
3 5318
What is an auto variable in c?
a c code by using memory allocation for add ,multiply of sprase matrixes
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..
Can you define which header file to include at compile time?
How can I write functions that take a variable number of arguments?
What are the uses of null pointers?
A banker has a seif with a cipher. Not to forget the cipher, he wants to write it coded as following: each digit to be replaced with the difference of 9 with the current digit. The banker chose a cipher. Decipher it knowing the cipher starts with a digit different than 9. I need to write a program that takes the cipher from the keyboard and prints the new cipher. I thought of the following: Take the input from the keyboard and put it into a string or an array. Go through the object with a for and for each digit other than the first, substract it from 9 and add it to another variable. Print the new variable. Theoretically I thought of it but I don't know much C. Could you give me any kind of hint, whether I am on the right track or not?
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.
What are categories used for in c?
How to declare pointer variables?
What is the best way to store flag values in a program?
Please send me WIPRO technical question to my mail ID.. its nisha_g28@yahoo.com please its urgent
Do you know pointer in c?
What is the c value paradox and how is it explained?
Write a program to print fibonacci series without using recursion?