What is wild pointer in c with example?
No Answer is Posted For this Question
Be the First to Post Answer
whenever a question is posted in a particular category in allinterview.com, Is there any facility to receive an indication mail. For eg: I need to receive an indication email, whenever a question is posted under the category “C Langauage”.
What is the argument of a function in c?
fn f(x) { if(x<=0) return; else f(x-1)+x; }
What is the difference between call by value and call by reference in c?
Q.11 Generate the following pattern using code in any language(c/c++/java) for n no. of rows 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
let's take a code struct FAQ { int a; char b; float c; double d; int a[10]; }*temp; now explain me how the memory will be allocated for the structure FAQ and what address will be in the structure pointer (temp)....................
Is main is user defined function?
What is the result main() { char c=-64; int i=-32 unsigned int u =-16; if(c>i){ printf("pass1,"); if(c<u) printf("pass2"); else printf("Fail2");} else printf("Fail1); if(i<u) printf("pass2"); else printf("Fail2") } a)Pass1,Pass2 b)Pass1,Fail2 c)Fail1,Pass2 d)Fail1,Fail2 e)none
What is a pointer and how it is initialized?
What is c language in simple words?
O,T,T,F,F,S,S,E,N,?,?,?,T,F,F,S,S,E,N
what is the difference between #include<> and #include”…”?