What do header files do?
No Answer is Posted For this Question
Be the First to Post Answer
What is header file in c?
Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates
write a c program to find the sum of five entered numbers using an array named number
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
Differentiate b/w Modify and Update commands giving example.
Explain the use of fflush() function?
How many levels of indirection in pointers can you have in a single declaration?
0 Answers Agilent, ZS Associates,
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
0 Answers Amdocs, Apps Associates,
How to declare a variable?
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
What is define directive?
what is the output of the program and explain why?? #include<stdio.h> void main ( ) { int k=4,j=0: switch (k) { case 3; j=300; case 4: j=400: case 5: j=500; } printf (ā%d\nā,j); }