Can a program have two main functions?
If I want to initialize the array like. int a[5] = {0}; then it gives me all element 0. but if i give int a[5] = {5}; then 5 0 0 0 0 is ans. what will I do for all element 5 5 5 5 5 in a single statement???
i have a written test for microland please give me test pattern
Given an array of characters which form a sentence of words, give an efficient algorithm to reverse the order of the words (not characters) in it?
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
what is pointer ?
10 Answers Kernex Micro Systems,
formula to convert 2500mmh2o into m3/hr
Write a program to print fibonacci series without using recursion?
Tell me when would you use a pointer to a function?
What are the disadvantages of external storage class?
Explain what does the format %10.2 mean when included in a printf statement?
What is the output of below code? main() { static int a=5; printf("%3d",a--); if(a) main(); }
List a few unconditional control statement in c.