what is the significance of static storage class specifier?
No Answer is Posted For this Question
Be the First to Post Answer
Why does notstrcat(string, "!");Work?
write a program in C to swap two variables
Write a program to check prime number in c programming?
What are categories used for in c?
Write a pro-gramme to determine whether the number is even or odd?
consagous technology placement paper
let's take a code struct FAQ { int a; char b; float c; double d; int a[10]; }*temp; now explain me how the memory will be allocated for the structure FAQ and what address will be in the structure pointer (temp)....................
#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
What is null pointer constant?
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
What do you mean by keywords in c?