Why is sizeof () an operator and not a function?
No Answer is Posted For this Question
Be the First to Post Answer
how can I convert a string to a number?
Here is a neat trick for checking whether two strings are equal
what is an inline function?
How many parameters should a function have?
what is the need for main function in c?
What is a null string in c?
Which command is more efficient? *(ptr+1) or ptr[1]
What is encapsulation?
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); }
What are file streams?
read the folllowing code # define MAX 100 # define MIN 100 .... .... if(x>MAX) x=1; else if(x<MIN) x=-1; x=50; if the initial value of x=200,what is the vlaue after executing this code? a.200 b.1 c.-1 d.50
How to convert a binary number to Hexa decimal number?? (Note:Do not convert it into binary and to Hexadecimal)