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 4686GIVEN 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
1880i 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 8482Write a c program to find, no of occurance of a given word in a file. The word is case sensitive.
2 8333create 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 6162what will be the output for the following program? main() { char ch = 'k'; char c; printf("%c",c); }
3 6066extern static int i func() { i =10; i++; printf("%d \n",i); } main() { i =20; printf("%d \n",i); func(); printf("%d \n",i); }
2 7067Write 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 6434A.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 4842typedef 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 7878Why the below program throughs error during compilation?
#include
‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .
Are global variables static in c?
What are the 4 types of organizational structures?
What is volatile variable in c with example?
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
How important is structure in life?
Can we assign string to char pointer?
Can you explain the four storage classes in C?
What is getch c?
Explain how do you list a file’s date and time?
Explain what is a pragma?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
Explain 'bus error'?
write a c program to print the next of a particular no without using the arithmetic operator or looping statements?
What are the advantages of using new operator as compared to the function malloc ()?