What is the explanation for modular programming?
what is the syallabus of computer science students in group- 1?
Why is conio.h not required when we save a file as .c and use clrscr() or getch() ?
Explain what are global variables and explain how do you declare them?
write a function to find whether a string is palindrome or not and how many palindrome this string contain?
How many types of errors are there in c language? Explain
What is stack in c?
size maximum allocated by calloc()
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
How pointers are declared?
Given an array of characters, how would you reverse it? How would you reverse it without using indexing in the array?
void swap(int a,int b) { a=a+b; b=a-b; a=a-b; } in this code always gives the same result for all case
what is the flow of execution in cprogram? ex:printf();,scanf();