What are the advantages and disadvantages of c language?
No Answer is Posted For this Question
Be the First to Post Answer
Is register a keyword in c?
What is data structure in c language?
What is a pointer on a pointer in c programming language?
write a programme that inputs a number by user and gives its multiplication table.
What will be the result of the following program? main() { char p[]="String"; int x=0; if(p=="String") { printf("Pass 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } else { printf("Fail 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } } a) Pass 1, Pass 2 b) Fail 1, Fail 2 c) Pass 1, Fail 2 d) Fail 1, Pass 2 e) syntax error during compilation
x=y=z=1 z=++x||++y&&++z Printf("%%%d";xyz) what is the values of x,y and z?????
How does the assert() function work?
f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=?
Explain data types & how many data types supported by c?
What is the difference between new and malloc functions?
"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks
helllo sir , what is the main use of the pointer ,array ,and the structure with the example of a programe