What is the purpose of type declarations?
No Answer is Posted For this Question
Be the First to Post Answer
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); } what is the output?
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?
What are volatile variables in c?
What is meant by initialization and how we initialize a variable?
void main() { int a[]={1,2,3,4,5},i; for(i=0;i<5;i++) printf("%d",a++); getch(); }
A C E G H +B D F A I ------------ E F G H D
Explain void pointer?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
can u give me the good and very optimised code for a car racing game?
Describe explain how arrays can be passed to a user defined function
A.C func() { pritnf(" in fuction %d",MACRO); } MAIN.c testfunc() { #define MACRO 10 printf("in test function %d", MACRO); } main() { printf("in main %d",MACRO); func(); testfunc(); getch(); }