When should structures be passed by values or by references?
No Answer is Posted For this Question
Be the First to Post Answer
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); }
Do you know the use of fflush() function?
What is meant by inheritance?
using for loop sum 2 number of any 4 digit number in c language
How can I invoke another program from within a C program?
Tell me what is null pointer in c?
char ch=10;printf("%d",ch);what is the output
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?
What are the modifiers available in c programming language?
what is used instead of pointers in java than c?
write a program to check whether a given integer is a strong number or not? [Hint: 145=1!+4!+5! =1+24+120 =145]
What are the types of bitwise operator?