What is floating point constants?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int ptr[] = {1,2,23,6,5,6}; printf("%d",&ptr[3]-&ptr[0]); }
how to write a bubble sort program without using temporary variable?
program to find which character is occured more times in a string and how many times it has occured? for example in the sentence "i love india" the output should be i & 3.
Tell me the use of bit field in c language?
f(*p) { p=(char *)malloc(6); p="hello"; return; } main() { char *p="bye"; f(p); printf("%s",p); } what is the o/p?
code for bubble sort?
What are logical errors and how does it differ from syntax errors?
Is it possible to execute code even after the program exits the main() function?
Can you please explain the scope of static variables?
consider the following structure: struct num nam{ int no; char name[25]; }; struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nicholas"}}; ..... ..... printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1); What does the above statement print? a.8,9 b.9,9 c.8,8 d.8,unpredictable value
Is swift based on c?
a 'c' program to tell that the set of three coordinates lie on a same line