Explain can static variables be declared in a header file?
Describe dynamic data structure in c programming language?
Can main () be called recursively?
How to find the digits truncation when assigning the interger variable to the character variables. like int i=500; char x = i : here we have truncation. how to find this. another ex: i =100; char x=i. here we do not have truncation.
Are there namespaces in c?
can we write a program in c for printf and scanf without using header file stdio.h
What is the value of uninitialized variable in c?
Give differences between - new and malloc() , delete and free() ?
How do you use a pointer to a function?
1) int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain the explain the output
find a number whether it is even or odd without using any control structures and relational operators?
22 Answers Microsoft, Shashank Private Limited,
what is the value of 'i'? i=strlen("Blue")+strlen("People")/strlen("Red")-strlen("green")
7 Answers Cadence, JNTU, Zen Technologies,
Write a program to print factorial of given number without using recursion?