How can this be legal c?
What is ponter?
What is the best way of making my program efficient?
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
Why should I prototype a function?
Explain b+ tree?
How arrays can be passed to a user defined function
Explain what is the benefit of using enum to declare a constant?
Tell me what are bitwise shift operators?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
What is the difference between strcpy() and memcpy() function in c programming?
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
Explain how are portions of a program disabled in demo versions?
What is logical error?
How do you define structure?