What is #define?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..

0 Answers  


in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?

4 Answers   Infosys, NetApp,


#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?

2 Answers  


There are 21 people in a room. They have to form groups of 3 people each. How many combinations are possible? Write a C program to print the same.

1 Answers   HCL, iGate,


How many identifiers are there in c?

0 Answers  






Why doesnt that code work?

0 Answers  


what is the advantage of software development

1 Answers  


What is the purpose of void in c?

0 Answers  


write a c/c++ program that takes a 5 digit number and calculates 2 power that number and prints it?

4 Answers  


How can you increase the size of a dynamically allocated array?

0 Answers   TISL,


What is the difference between static and global variables?

1 Answers  


Write a program that takes a 5 digit number and calculates 2 power that number and prints it

7 Answers  


Categories