c language interview questions & answer
No Answer is Posted For this Question
Be the First to Post Answer
What is the relationship between pointers and data structure?
#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }
Describe explain how arrays can be passed to a user defined function
Which is better pointer or array?
what is the output of below pgm? void main() { int i=0; if(i) printf("pass"); else printf("fail"); }
#include<conio.h> #include<stdio.h> void main() { int i; if(1,0,2,3) { printf("if"); } else { printf("else"); } getch(); } Can any body tell the answer of this question with explanation?
how to write a cprogram yo get output in the form * *** ***** ******* ********* ******* ***** *** *
wat is the output #define VOLEDEMORT _who_must_not_be_named int main() { printf("VOLEDEMORT"); }
What is the auto keyword good for?
write a c program to find the probability of random numbers between 1-1000
write an algorithm which can find the largest number among the given list using binary search ............... this was asked in the interview
2 Answers Satyam, UNIS, Wipro,
Explain the priority queues?