How can you call a function, given its name as a string?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between File pointer and Internal Charecter Pointer?
What ios diff. Between %e & %f?
show how link list can be used to repersent the following polynomial i) 5x+2
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
What is the difference b/w Structure & Union?
Write a c program to read a positive number and display it in words.? ex: 123=one two three help me....
Tell us something about keyword 'auto'.
#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?
int i =10 main() { int i =20,n; for(n=0;n<=i;) { int i=10 i++; } printf("%d", i);
why the execution starts from main function
What is the difference between far and near ?
What are the advantages of using macro in c language?