Is null always defined as 0(zero)?
No Answer is Posted For this Question
Be the First to Post Answer
#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.
Write a simple program to find the size of different basic data types in C.
what is disadvantage of pointer in C
write a program to display numbers from 1 to 10 and 10 to 1?
main() { char x; while(x=0;x<=255;x++) printf("\nAscii value %d Charater %c",x,x); }
How do you do dynamic memory allocation in C applications?
What is difference between array and structure in c?
what is Array?
Give the output for the following program. #define STYLE1 char main() { typedef char STYLE2; STYLE1 x; STYLE2 y; clrscr(); x=255; y=255; printf("%d %d\n",x,y); }
How do I get an accurate error status return from system on ms-dos?
What is a shell structure examples?
f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=?