A character flag or control mechanism that delineates one data item from another
a) variable
b) constant
c) delimiter
d) call by reference
No Answer is Posted For this Question
Be the First to Post Answer
What is #include called?
how to find your architecture is LittleEndian or BigEndian?
how to make program without <> in library.
What is pointers in c with example?
#include<stdio.h> main() {int i=1;j=1; for(;;) {if(i>5) break; else j+=1; printf("\n%d",j) i+=j; } }
Find greatest of two numbers using macro
why TCS selected more student in the software field from all institution.
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
write a program to print the all 4digits numbers & whose squares must me even numbers?
What are header files why are they important?
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 5 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.
Explain how can you avoid including a header more than once?