can any one tell that i have a variable which is declared as static but i want this variable to be visible to the other files? how?
2 4586GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
1846i want to asked a question about c program the question is: create a c program that displays all prime numbers less than 500? using looping statement
5 8316Write a c program to find, no of occurance of a given word in a file. The word is case sensitive.
2 8246create a C program that displays one z,two y's,three x's until twenty six A's. plzz answer i need it tomorrow.
4 6027what will be the output for the following program? main() { char ch = 'k'; char c; printf("%c",c); }
3 5954extern static int i func() { i =10; i++; printf("%d \n",i); } main() { i =20; printf("%d \n",i); func(); printf("%d \n",i); }
2 6929Write a program to display the no of bit difference between any 2 given numbers eg: Num1 will 12->1100 Num2 will 7->0111 the difference in bits are 2.
4 6270A.C func() { pritnf(" in fuction %d",MACRO); } MAIN.c testfunc() { #define MACRO 10 printf("in test function %d", MACRO); } main() { printf("in main %d",MACRO); func(); testfunc(); getch(); }
2 4728typedef struct { int i:8; char c:9; float f:20; }st_temp; int getdata(st_temp *stptr) { stptr->i = 99; return stptr->i; } main() { st_temp local; int i; local.c = 'v'; local.i = 9; local.f = 23.65; printf(" %d %c %f",local.i,local.c,local.f); i = getdata(&local); printf("\n %d",i); getch(); } why there there is an error during compiling the above program?
1 7779Why the below program throughs error during compilation?
#include
What do you mean by command line argument?
Explain how can I manipulate strings of multibyte characters?
Can a variable be both static and volatile in c?
What does the format %10.2 mean when included in a printf statement?
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
How can type-insensitive macros be created?
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
Where static variables are stored in c?
What is the best way to comment out a section of code that contains comments?
Write a program to swap two numbers without using third variable?
What is #define used for in c?
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
What is meant by preprocessor in c?
c program for searching a student details among 10 student details