What is preprocessor with example?
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> int fun(); int i; int main() { while(i) { fun(); main(); } printf("hello \n"); return 0; } int fun() { printf("hi"); } answer is hello.how??wat is tat while(i) mean?
#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?
write a program in c language to print your bio-data on the screen by using functions.
What is FIFO?
write a addition of two no. program with out using printf,scanf,puts .
Find the O/p of the following 1) #include int main() { char c='1'; int j=atoi(c); }
how to find the size of the data type like int,float without using the sizeof operator?
What is variable in c example?
write a recursive program in'c'to find whether a given five digit number is a palindrome or not
What is a structure in c language. how to initialise a structure in c?
Add 2 64 bit numbers on a 32 bit machine
3 Answers EMC, Hyderabad Central University, NetApp,
Why we write conio h in c?