what is the difference between class and unio?
No Answer is Posted For this Question
Be the First to Post Answer
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
What is a program?
What is the value of h?
What is a segmentation fault?
What is wrong with this program statement?
How does struct work in c?
Are negative numbers true in c?
how can i get the string which is having two spaces at the end.suppose the string is "Hello World ".Now at the end i have two spaces.i need to print with that spaces .
How can I open files mentioned on the command line, and parse option flags?
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?
How is a structure member accessed?
Are pointers integers in c?