What is indirection in c?
No Answer is Posted For this Question
Be the First to Post Answer
write a program in C to swap two variables
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); } wat is the o/p and how?
Why does notstrcat(string, "!");Work?
Explain this code. #include <stdio.h> void f1(int *k) { *k = *k + 10; } main ( ){ int i; i = 0; printf (" The value of i before call %d \n", i); f1 (&i); printf (" The value of i after call %d \n", i); }
Taking an example,differentiate b/w loader and linker ?
if function is declared as static in one source file, if I would like to use the same function in some other source file...is it possible....how ?
Juxtapose the use of override with new. What is shadowing?
What is the use of function in c?
Can you think of a way when a program crashed before reaching main? If yes how?
what is foreign key in c language?
What's the total generic pointer type?