What are actual arguments?
No Answer is Posted For this Question
Be the First to Post Answer
what is pointer?
13 Answers HCL, TCS,
write a progrmm in c language take user interface generate table using for loop?
#define MAX 3 main() { printf("MAX = %d \n",MAX ); #undef MAX #ifdef MAX printf("Vector Instituteā); #endif
how to use virual function in real time example
What is logical error?
implement NAND gate logic in C code without using any bitwise operatior.
What is conio h in c?
Do you know the use of 'auto' keyword?
WRITE A PROGRAM TO PRINT THE FOLLOWING OUTPUTS USING FOR LOOPS. A) * B) ***** *** * * ***** * * *****
can we define a function in structure?
How can I determine whether a machines byte order is big-endian or little-endian?
#include<stdio.h> int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20