Write the test cases for checking a variable having value in
range -10.0 to +10.0?
How does normalization of huge pointer works?
What is the output for the following program #include<stdio.h> main() { char a[5][5],flag; a[0][0]='A'; flag=((a==*a)&&(*a==a[0])); printf("%d\n",flag); }
What do you mean by dynamic memory allocation in c?
Explain this code. #include <stdio.h> void f1(int *k) { *k = *k + 10; } main ( ){ int i; i = 0; printf (" The value of i before call %d \n", i); f1 (&i); printf (" The value of i after call %d \n", i); }
what is the first address that gets stored in stack according to a C or C++ compiler???? or what will be the first address that gets stored when we write a C source code????????
1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321
main difference between c and c++ language
What is the value of y in the following code? x=7;y=0; if(x=6) y=7; else y=1;
What is array in c with example?
write a program to fined second smallest and largest element in a given series of elements (without sorting)
Write a C program to perform some of the operation which can be performed using Single linked list
C program to read the integer and calculate sum and average using single dimensional array