What is the purpose of the statement: strcat (S2, S1)?
No Answer is Posted For this Question
Be the First to Post Answer
Is this program statement valid? INT = 10.50;
How to implement variable argument functions ?
Explain the use of bit fieild.
#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.
Why is conio.h not required when we save a file as .c and use clrscr() or getch() ?
What are identifiers c?
main() { int ptr[] = {1,2,23,6,5,6}; printf("%d",&ptr[3]-&ptr[0]); }
Difference between Class and Struct.
13 Answers Ericsson, Motorola, Wipro,
main() { int i; printf("%d",((i=1)*i-- - --i*(i=-3)*i++ + ++i)); } ans is 24 bt how?pls tell smbody............
Write a program of advanced Fibonacci series.
why little endian and big endian came?y they using differently? y they not used commonly ?wt is application of little and big ?
will the program compile? int i; scanf(ā%dā,i); printf(ā%dā,i);