Is null always defined as 0(zero)?


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

Post New Answer

More C Interview Questions

Write a code to determine the total number of stops an elevator would take to serve N number of people.

0 Answers   Expedia,


#include<stdio.h> void main() { int a=5,b=6,c; int x=(a<b)+7; int y=(x==7)*9; int z=(c=x+y)*2; printf("%h %h %h",x,y,z); } What is the output? Explain it.

8 Answers   IBM,


What are comments and how do you insert it in a C program?

0 Answers  


Are bit fields portable?

0 Answers   EXL,


? ???Mirror Mirror on the wall????????

1 Answers   channel V, DPI,






write a program to swap two numbers without using temporary variable?

3 Answers  


What is the difference between arrays and pointers?

0 Answers  


Is null always defined as 0(zero)?

0 Answers  


#include<stdio.h> main() { char *p1; char *p2; p1=(char *) malloc(25); p2=(char *) malloc(25); strcpy(p1,"Ramco"); strcpy(p2,"Systems"); strcat(p1,p2); printf("%s",p1); } Tell me the output?

6 Answers   Ramco,


What is difference between scanf and gets?

0 Answers  


Write a program of prime number using recursion.

0 Answers   Aspiring Minds,


What is the difference between functions abs() and fabs()?

0 Answers  


Categories