When should I declare a function?
write a program that uses point of sale system. which are mainly used by retail markets, where the is a database inventory list, a slip should be printed for the customer. manage should be able to access what has been sold and what is left from stock?
Explain enumerated types in c language?
In how much time you will write this c program? Prime nos from 1 to 1000
4)What would be the output? main() { int num=425; pf("%d",pf("%d",num)); } a)Comp error b)4425 c)4253 d)3435 e)none
Explain c preprocessor?
Which of the following is not a valid declaration for main ()? 1) int main() 2) int main(int argc, char *argv[]) 3) They both work
What is the value of y in the following code? x=7;y=0; if(x=6) y=7; else y=1;
Is there a way to jump out of a function or functions?
please tell me the logic for this C program : INPUT (string):ABCD OUTPUT :BCDA CDAB DABC
Write a program to print fibonacci series without using recursion?
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.
Given an unsigned integer, find if the number is power of 2?