What is the general form of a C program?
No Answer is Posted For this Question
Be the First to Post Answer
a linearly ordered set of data elements that have the same structure and whose order is preserved in storage by using sequential allocation a) circular b) ordinary c) array d) linear list
multiple of 9 without useing +,* oprator
Why is void main used?
I heard that you have to include stdio.h before calling printf. Why?
main() { char x; while(x=0;x<=255;x++) printf("\nAscii value %d Charater %c",x,x); }
discuss the steps needed to get a program from source code to executable in a system?
write an algorithm which can find the largest number among the given list using binary search ............... this was asked in the interview
2 Answers Satyam, UNIS, Wipro,
What is the sizeof () a pointer?
pgm in c to reverse string by word using array(god is love becomes love is god) (no additional array can used,space is only delimiter between words )
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
What is #line?
How to add two numbers with using function?