Explain setjmp()?
No Answer is Posted For this Question
Be the First to Post Answer
what is the difference between while and do while?
fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }
what will be the output for the following program? main() { char ch = 'k'; char c; printf("%c",c); }
What are c identifiers?
i have to apply for rbi before that i need to know the the syllabus for the entrance questions. whethet it may be aps or techinical
Which built-in library function can be used to match a patter from the string?
how to capitalise first letter of each word in a given string?
class foo { public: static int func(const char*& p) const; }; This is illegal, why?
int far *near * p; means
What is the output of below code? main() { static in a=5; printf("%3d",a--); if(a) main(); }
#include<stdio.h> int fun(); int i; int main() { while(i) { fun(); main(); } printf("hello \n"); return 0; } int fun() { printf("hi"); } answer is hello.how??wat is tat while(i) mean?
I heard that you have to include stdio.h before calling printf. Why?