What is the use of structure padding in c?
No Answer is Posted For this Question
Be the First to Post Answer
Is c weakly typed?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
difference between loading and linking
in linking some of os executables are linking name some of them
Write a C program in Fibonacci series.
What are the 3 types of structures?
Explain what are binary trees?
what r callback function?
What is pointer to pointer in c with example?
#include <stdio.h> int main ( int argc, char* argv [ ] ) { int value1 = 10; int value2 = 5; printf ( "\n The sum is :%d", value1 | value2 ); } This is the answer asked by some one to add two numbers with out using arithmetic operator?Yes this answer is write it given out put as 15.But how????? what is need of following line? int main ( int argc, char* argv [ ] ) how it work?what is the meaning for this line? please explain me.Advance thanks
write a program for the normal snake games find in most of the mobiles.
Which of these functions is safer to use : fgets(), gets()? Why?