What does dm mean sexually?


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

Post New Answer

More C Interview Questions

Explain about the constants which help in debugging?

0 Answers  


What library is sizeof in c?

0 Answers  


What is the size of array float a(10)?

0 Answers  


what is function pointer?

2 Answers   Wipro,


Is anything faster than c?

0 Answers  






Explain the use of keyword 'register' with respect to variables.

0 Answers  


Given a piece of code int x[10]; int *ab; ab=x; To access the 6th element of the array which of the following is incorrect? (A) *(x+5) (B) x[5] (C) ab[5] (D) *(*ab+5} .

2 Answers   Oracle,


if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0

0 Answers  


How do you access command-line arguments?

1 Answers  


#include <stdio.h> int main() { if ("X" <"x") printf("X smaller than x "); } my question is whats the mistake in this program? find it and please tell me..

3 Answers  


f(char *p) { p=(char *)malloc(sizeof(6)); strcpy(p,"HELLO"); } main() { char *p="BYE"; f(p) printf("%s",p); } what is the output?

9 Answers   Hughes, Tech Mahindra,


How is a null pointer different from a dangling pointer?

0 Answers  


Categories