Write a program to swap two numbers without using third variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
Write programs for String Reversal & Palindrome check
Explain what are multidimensional arrays?
what is the advantage of software development
Explain how can you be sure that a program follows the ansi c standard?
What functions are used for dynamic memory allocation in c language?
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } Find the output
How can draw a box in cprogram without using graphics.h header file & using only one printf(); ?
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
consagous technology placement paper
In the below code, how do you modify the value 'a' and print in the function. You'll be allowed to add code only inside the called function. main() { int a=5; function(); // no parameters should be passed } function() { /* add code here to modify the value of and print here */ }
What is local and global variable in c?
What is c preprocessor mean?