What is the function of volatile in c language?
No Answer is Posted For this Question
Be the First to Post Answer
Do array subscripts always start with zero?
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)....................
How can I copy just a portion of a string?
which is faster execution: loops or recursion?
Q.11 Generate the following pattern using code in any language(c/c++/java) for n no. of rows 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
What is the relation between # and include<stdio.h>
How can I get back to the interactive keyboard if stdin is redirected?
void main() { char c; while(c=getchar()!='\n') printf("%d",c); } o/p=11 why?
#include <stdio.h> int main ( int argc, char* argv [ ] ) { int value1 = 10; int value2 = 5; printf ( "\n The sum is :%d", value1 | value2 ); } This is the answer asked by some one to add two numbers with out using arithmetic operator?Yes this answer is write it given out put as 15.But how????? what is need of following line? int main ( int argc, char* argv [ ] ) how it work?what is the meaning for this line? please explain me.Advance thanks
What is the Purpose of 'extern' keyword in a function declaration?
Write a function that will take in a phone number and output all possible alphabetical combinations
write a program structure to find average of given number