Why isn't any of this standardized in c? Any real program has to do some of these things.
No Answer is Posted For this Question
Be the First to Post Answer
a simple program in c language
What is action and transformation in spark?
What is the use of define in c?
What is structure packing ?
What is pointer to pointer in c?
Why do we need a structure?
explain how do you use macro?
main() { intj; while9j<=10) { printf("\n%d",j); j=j+1; } }
What is difference between constant pointer and constant variable?
What are identifiers and keywords in c?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
#include<stdio.h> main(0 { printf("\n %d %d %d",sizeof(3),sizeof("3"),sizeof(3)); }