how to execute with out main in cprogram
Answers were Sorted based on User's Feedback
Answer / rina
any c program is not run without main function
main function is compalsary in c program
| Is This Answer Correct ? | 6 Yes | 8 No |
Answer / rakesh
nice 1 ravinder..!!!
great work..!!
m also having same ans.!!
| Is This Answer Correct ? | 0 Yes | 3 No |
Answer / shashank
isme bhi yahi ho raha hai
but with a trick
pls anyone can give me good links(url) to master c
| Is This Answer Correct ? | 0 Yes | 5 No |
where are auto variables stored? What are the characteristics of an auto variable?
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
Why doesnt that code work?
What does the characters “r” and “w” mean when writing programs that will make use of files?
Is main is a keyword in c?
Which is the best sort method for library management?
What is data types?
Function shall sum members of given one-dimensional array. However, it should sum only members whose number of ones in the binary representation is higher than defined threshold (e.g. if the threshold is 4, number 255 will be counted and 15 will not) - The array length is arbitrary - output the results to the stdout
what is c?
difference between loading and linking
Given a number N, product(N) is the product of the digits of N. We can then form a sequence N, product(N), product(product(N))… For example, using 99, we get the sequence 99, 99 = 81, 81 = 8. Input Format: A single integer N Output Format: A single integer which is the number of steps after which a single digit number occurs in the sequence. Sample Test Cases: Input #00: 99 Output #00: 2 Explanation: Step - 1 : 9 * 9 = 81 Step - 2 : 8 * 1 = 8 There are 2 steps to get to this single digit number. Input #01: 1137638147
Tell me about low level programming languages.