What are local static variables?
No Answer is Posted For this Question
Be the First to Post Answer
How do you write a program which produces its own source code as output?
Explain what’s a signal? Explain what do I use signals for?
struct node { int *a; char *b; char array[12]; }; struct node m,*n; assign the value in *a,*b,char array[12]
Does c have function or method?
c language interview questions & answer
. Consider the following program main() { int a[5]={1,3,6,7,0}; int *b; b=&a[2]; } The value of b[-1] is (A) 1 (B) 3 (C) -6 (D) none
write a program to reverse the words in the sentence.NOTE:not reverse the entire string but just the occurance of each word
why we need function pointers?
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
What is the size of empty structure in c?
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
Explain what is a program flowchart and explain how does it help in writing a program?