Where does the name "C" come from, anyway?
No Answer is Posted For this Question
Be the First to Post Answer
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
write a program without using main function?
Where define directive used?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
write a program to delete an item from a particular location of an linear array?
How does the C program handle segmentation faults?
which is the best site or book for learning C...and i need the content for C..how to get the good programming skills....? can plz suggest me....
HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????
Write code for initializing one dimentional and two dimentional array in a C Program?
5 Answers Deshaw, Edutech, GMD,
#include<stdio.h> void main() { int a=10,b=20,c=30; printf("%d",scanf("%d%d%d",&a,&b,&c)); } what is the output for this?
Find if a number is power of two or not?
. A database table called PERSON contains the fields NAME, BASIC and HRA. Write a computer program to print a report which employee name and total salary for those employees whose total salary is more than 10,000. Total Salary = BASIC + HRA. At the end, the program should also print the total number of employees whose total salary is more than 10,000.