What is the difference between #include <header file> and #include “header file”?
No Answer is Posted For this Question
Be the First to Post Answer
What are formal parameters?
typedef struct { int i:8; char c:9; float f:20; }st_temp; int getdata(st_temp *stptr) { stptr->i = 99; return stptr->i; } main() { st_temp local; int i; local.c = 'v'; local.i = 9; local.f = 23.65; printf(" %d %c %f",local.i,local.c,local.f); i = getdata(&local); printf("\n %d",i); getch(); } why there there is an error during compiling the above program?
why do we use pointer instead directly acessing the data?
Write a program to check armstrong number in c?
2.main { int x,j,k; j=k=6;x=2; x=j*k; printf("%d", x);
write a program to add two numbers of any size.....(remember any size)
how do you execute a c program in unix.
Write a program to display the no of bit difference between any 2 given numbers eg: Num1 will 12->1100 Num2 will 7->0111 the difference in bits are 2.
State two uses of pointers in C?
DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?
How can I find leaf node with smallest level in a binary tree?
what does ‘Bus Error’ mean?