Explain what will the preprocessor do for a program?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between void main() and int main()?
main() { FILE *fs; char c[10]; fs = fopen(“source.txt”, ”r”); /* source.txt exists and contains “Vector Institute” */ fseek(fs,0,SEEK_END); fseek(fs,-3L,SEEK_CUR); fgets(c,5,fs); puts(c); }
How can I automatically locate a programs configuration files in the same directory as the executable?
What is the difference between memcpy and memmove?
write a function to find whether a string is palindrome or not and how many palindrome this string contain?
How we can set and clear bit in a byte using macro function?
Why doesn't C have nested functions?
What is the difference between ++a and a++?
Is fortran still used in 2018?
main() { char x; while(x=0;x<=255;x++) printf("\nAscii value %d Charater %c",x,x); }
Write a program or provide a pseudo code to flip the 2nd bit of the 32 bit number ! (Phone Screen)
Why static variable is used in c?