What is adt in c programming?
No Answer is Posted For this Question
Be the First to Post Answer
How can I remove the leading spaces from a string?
main() { FILE *fs; char c[10]; fs = fopen(“source.txt”, ”r”); /* source.txt exists and contains “Vector Institute” */ fseek(fs,0,SEEK_END); fseek(fs,-3L,SEEK_CUR); fgets(c,5,fs); puts(c); }
how to print "hai" in c?
What are the disadvantages of a shell structure?
What is the difference between a string and an array?
What is pointer and structure in c?
Will Macros support multiple arguments ?
how we do lcm of two no using c simple if while or for statement
What does return 1 means in c?
Display names and numbers of employees who have 5 years or more experience and salary less than Rs.15000 using array of structures (name, number, experience and salary)
Write 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.
In a switch statement, explain what will happen if a break statement is omitted?