Is null a keyword in c?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the use of 'auto' keyword in c programming?
Difference between fopen() and open()?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
5 Answers TCS, Vimukti Technologies,
. Consider the following program main() { int a[5]={1,3,6,7,0}; int *b; b=&a[2]; } The value of b[-1] is (A) 1 (B) 3 (C) -6 (D) none
What is the output for the program given below typedef enum grade{GOOD,BAD,WORST,}BAD; main() { BAD g1; g1=1; printf("%d",g1); }
wht is the difference between KPO and BPO ?
2 Answers Accenture, BPO, HCK, HCL, Infosys,
Explain how do you list a file’s date and time?
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.
change to postfix a/(b+c*d-e)
Explain how can you determine the size of an allocated portion of memory?
Here is a good puzzle: how do you write a program which produces its own source code as output?
Write a code to remove duplicates in a string.