Can you please explain the scope of static variables?
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> void main() { int a=10,b=20,c=30; printf("%d",scanf("%d%d%d",&a,&b,&c)); } what is the output for this?
What type is sizeof?
Write a C program in Fibonacci series.
2.main { int x,j,k; j=k=6;x=2; x=j*k; printf("%d", x);
What is a pointer variable in c language?
What is a newline escape sequence?
Explain enumerated types.
What is the use of bitwise operator?
Explain what is the benefit of using const for declaring constants?
What does struct node * mean?
Tell me about low level programming languages.
What is the correct code to have following output in c using nested for loop?