why we wont use '&' sing in aceesing the string using scanf
No Answer is Posted For this Question
Be the First to Post Answer
typedef 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?
What is malloc calloc and realloc in c?
What is dangling pointer in c?
Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.
0 Answers Sikkim Manipal University,
What are the different types of storage classes in C?
How do you determine whether to use a stream function or a low-level function?
Is c# a good language?
write a program to display the numbers in the following format 4 4 3 3 3 3 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 2 2 2 2 2 3 3 3 4
difference between memcpy and strcpy
int i; i=2; i++; if(i=4) { printf(i=4); } else { printf(i=3); } output of the program ?
Explain the use of #pragma exit?
what is the purpose of the code, and is there any problem with it. bool f( uint n ) { return (n & (n-1)) == 0; }