When can a far pointer be used?
No Answer is Posted For this Question
Be the First to Post Answer
sqrt(x+sqrt(x+sqrt(x+sqrt(x))))=2; Find the value of x?
Struct(s) { int a; long b; } Union (u) {int a; long b; } Print sizeof(s)and sizeof(u) if sizeof(int)=4 and sizeof(long)=4
main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%s\n",ptr); ptr++; printf("%s\n",ptr); } Find the Outputs?
What is the use of printf() and scanf() functions?
What does void main () mean?
How is a null pointer different from a dangling pointer?
write a c program to find biggest of 3 number without relational operator?
What are the rules for the identifier?
Go through the following code sinippet char a[20]; a="Hello Orcale Test"; will this compile?
Concat two string with most overlapped substring has to removeĀ "abcd"+ "cdef" = "abcdef
What are runtime error?
what will be the output of" printf("%d%d",scanf("%d% d",&a&b));"