What is actual argument?
No Answer is Posted For this Question
Be the First to Post Answer
How do you define a function?
What is use of null pointer in c?
12. Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV
why should i select you?
Why we use void main in c?
int main() { int days; printf("enter days you are late"); scanf("%d",days); if (days<=5) printf("5o paisa fine"); if (days<=10&&days>=6) printf("1rs fine"); if(days>10) printf("10 rs fine"); if(days=30) printf("membership cancelled"); return 0; } tell me whats wrong in this program? is it right?
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.
how to convert binary to decimal and decimal to binary in C lanaguage
7 Answers BPO, Far East Promotions, IBM, RBS,
Write a program to print factorial of given number without using recursion?
Explain what is the stack?
Disadvantages of C language.
Why is conio.h not required when we save a file as .c and use clrscr() or getch() ?