How is a structure member accessed?
No Answer is Posted For this Question
Be the First to Post Answer
Simplify the program segment if X = B then C ← true else C ← false
What are runtime error?
explain how do you use macro?
Efficient data structure for store/search list of 1000 records a)array b)double linked list c)circular queue d)hash table
simple program for virtual function?
Why void is used in c?
Result of the following program is main() { int i=0; for(i=0;i<20;i++) { switch(i) case 0:i+=5; case 1:i+=2; case 5:i+=5; default i+=4; break;} printf("%d,",i); } } a)0,5,9,13,17 b)5,9,13,17 c)12,17,22 d)16,21 e)syntax error
what is the hardware model of CFG( context free grammar)
What is the difference between Printf(..) and sprint(...) ?
What are the types of assignment statements?
How do I initialize a pointer to a function?
write a c program that if the given number is prime, and their rearrangement(permute) of that number is also prime. Ex: Input is "197" is prime Output: 791,917,179 is also prime. Please any one tell me tha code for that