how should functions be apportioned among source files?
No Answer is Posted For this Question
Be the First to Post Answer
write a program to display & create a rational number
How many types of arrays are there in c?
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?
what are the files which are automatically opened when a c file is executed?
What are conditional operators in C?
What is a newline escape sequence?
How to write a program to receive an integer & find its octal equivalent by using for loop?
What is register variable in c language?
If I want to initialize the array like. int a[5] = {0}; then it gives me all element 0. but if i give int a[5] = {5}; then 5 0 0 0 0 is ans. what will I do for all element 5 5 5 5 5 in a single statement???
what is the difference between global variable & static variable declared out side all the function in the file.
What is pointer to pointer in c with example?
What is difference between structure and union in c programming?