who is the father of C Language?
Answers were Sorted based on User's Feedback
What are preprocessor directives?
can please someone teach me how to create this program using while statement.. this is the output should look like 0 2 4 6 8 10 -thanks.. :) need it asap...
How do I get an accurate error status return from system on ms-dos?
What will the preprocessor do for a program?
Wt are the Buses in C Language
Program to find the absolute value of given integer using Conditional Operators
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
YBJBU6
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
#include<stdio.h> main() { char *p1; char *p2; p1=(char *) malloc(25); p2=(char *) malloc(25); strcpy(p1,"Ramco"); strcpy(p2,"Systems"); strcat(p1,p2); printf("%s",p1); } Tell me the output?
Write a c program to build a heap method using Pointer to function and pointer to structure ?
Explain what is wrong with this program statement?