What is the purpose of 'register' keyword in c language?
No Answer is Posted For this Question
Be the First to Post Answer
What is header file in c?
How to find the digits truncation when assigning the interger variable to the character variables. like int i=500; char x = i : here we have truncation. how to find this. another ex: i =100; char x=i. here we do not have truncation.
consagous technology placement paper
c program to manipulate x=1+3+5+...+n using recursion
What is the difference between far and near in c?
When do we get logical errors?
for example user gives input as " 20 or 20.0 or rs 20.0 or 20.00 or rs20 and so .. on " and the output should be stored as " rs.20.00 " in a variable
What is the output of the program given below #include<stdio.h> main() { char i=0; for(;i>=0;i++) ; printf("%d\n",i); }
21 Answers ADITI, Student, TCS,
Can main () be called recursively?
Write a c program to find, no of occurance of a given word in a file. The word is case sensitive.
what would be the output of the follwing struct st { char name[20]; int i; float f; }; main() { struct st emp = {"forum"}; printf("%d %f",emp.i,emp.f); }
what is difference between declaring the pointer as int and char in c language?