What is derived datatype in c?
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> main() { int a=1; int b=0; b=++a + ++a; printf("%d %d",a,b); }
Explain 'far' and 'near' pointers in c.
why return type of main is not necessary in linux
what is d pitfalls of registers variables
How to write a code for reverse of string without using string functions?
What are different storage class specifiers in c?
what is develop in c language
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
what is the different bitween abap and abap-hr?
WHAT IS INT?
What are run-time errors?
#include <stdio.h> int main() { if ("X" <"x") printf("X smaller than x "); } my question is whats the mistake in this program? find it and please tell me..