Is c object oriented?
Why does everyone say not to use scanf? What should I use instead?
What is the memory allocated by the following definition ? int (*x)();
Mention four important string handling functions in c languages .
What does c mean in basketball?
what is the difference between north western polytechnique university and your applied colleges?? please give ur answers for this. :)
1. Can we use the for loop this way? for(;i>5;) 2. What is the use of pointers? 3. what is array of pointer? 4. What is the difference between file and database? 5. Define data structure?
what is output of the following statetment?Printf(“%x”, -1<<4); ?
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300
How can we allocate array or structure bigger than 64kb?
What is an lvalue in c?
How reliable are floating-point comparisons?
What is #error and use of it?