Can we declare variable anywhere in c?
No Answer is Posted For this Question
Be the First to Post Answer
A C E G H +B D F A I ------------ E F G H D
Explain about block scope in c?
#include<std.h> int main() { char *str[]={"Frogs","Do","Not","Die","They","Croak!"}; printf("%d %d\n",sizeof(str),strlen(str)); ...return 0; } what will the output of the above program?
what is the role you expect in software industry?
How do you convert strings to numbers in C?
What are derived data types in c?
proc() { static i=10; printf("%d",i); } If this proc() is called second time, what is the output?
Are there constructors in c?
what are the interview question's in the language c
which will be first in c compiling ,linking or compiling ,debugging.
the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b
Given a single Linked list with lakhs of nodes and length unknown how do you optimally delete the nth element from the list?