What is self-referential structure in c programming?
No Answer is Posted For this Question
Be the First to Post Answer
A.C func() { pritnf(" in fuction %d",MACRO); } MAIN.c testfunc() { #define MACRO 10 printf("in test function %d", MACRO); } main() { printf("in main %d",MACRO); func(); testfunc(); getch(); }
What are enums in c?
What is difference between array and structure in c?
Explain 'bit masking'?
while running a program, i got the msg that press return key to exit.what that mean in C as there are no such options as far i know.
Write a C program to check a number even or odd, without using any relational, arithmetic operator and any loops.
How can you pass an array to a function by value?
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers
Explain what is the general form of a c program?
what r callback function?
Define Array of pointers.
what is the differance between pass by reference and pass by value.