What is scanf () in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is an arrays?
Given a string write a program to print all alphabetical characters in the order of their occurance first,followed by the sum of the numeric characters then followed by the special characters in the order of their occurance.
1 Answers College School Exams Tests, Wipro,
When should the volatile modifier be used?
Difference between malloc() and calloc() function?
write a program that print itself even if the source file is deleted?
Implement a function that returns the 5th element from the end in a singly linked list of integers in one pass.
Explain demand paging.
how to create duplicate link list using C???
How do you initialize function pointers? Give an example?
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 does s c mean in text?
int i; i=2; i++; if(i=4) { printf(i=4); } else { printf(i=3); } output of the program ?