Explain how can I read and write comma-delimited text?
No Answer is Posted For this Question
Be the First to Post Answer
what is purpose of fflush(stdin) function
6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?
Write a program in C for showing working of different logical operator in C. Your program should guide users with proper message/menu on the console.
Are global variables static in c?
though sbi was nationalized why its not comes under nationalized banks and its comes under publicsector banks
3 Answers State Bank Of India SBI,
Explain what is the benefit of using enum to declare a constant?
There are 21 people in a room. They have to form groups of 3 people each. How many combinations are possible? Write a C program to print the same.
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.
What is dangling pointer in c?
main() { int age; float ht; printf("Enter height and age"); scanf("%d%d",&height,&age); if((age<=20)&&(ht>=5)) {printf("She loves you");} else {printf("She loves you");} }
how would a 4*3 array A[4][3] stored in Row Major Order?
Why is c not oop?