WHAT IS MEANT BY LIFE?
Answers were Sorted based on User's Feedback
Answer / chaudhery mohsin iftikhar
The meant by LIFE is "Learning is for eve"
| Is This Answer Correct ? | 0 Yes | 0 No |
#include<stdio.h> int main() { int i=0,j=1,k=2,m,n=0; m=i++&&j++&&k++||n++; printf("%d,%d,%d,%d,%d",i,j,k,m,n); }
12 Answers Capital IQ, Sasken,
#define MAX 3 main() { printf("MAX = %d \n",MAX ); #undef MAX #ifdef MAX printf("Vector Instituteā); #endif
What is the difference between local variable and global variable in c?
How do c compilers work?
what is structuer?
Explain what is the difference between null and nul?
a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode
What is the use of sizeof?
What is the difference between constant pointer and constant variable?
struct abc { unsigned int a; char b; float r; }; struct xyz { int u; struct abc tt; }ww; ww = (struct xyz*)malloc(sizeof(struct xyz)); will the memory be allocated for the inner structure also?
with out using main how to execute the program?
What is data structure in c programming?